aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJon Wayne Parrott <jonwayne@google.com>2016-08-11 14:02:10 -0700
committerJon Wayne Parrott <jonwayne@google.com>2016-08-15 10:26:34 -0700
commita1136db2ebf19243ec43cd4ff6958812ad114ef8 (patch)
tree7d9dd0b637eb2feace689c2a5ae90086c3736ed3 /tests
parentc6b30bf420b3e63ed086c1fecad4b7aa2adb5089 (diff)
downloadoauth2client-a1136db2ebf19243ec43cd4ff6958812ad114ef8.tar.gz
Remove __author__ lines, add contributors.md
Resolves #626
Diffstat (limited to 'tests')
-rw-r--r--tests/contrib/appengine/test_appengine.py1
-rw-r--r--tests/contrib/test_flask_util.py3
-rw-r--r--tests/contrib/test_keyring_storage.py3
-rw-r--r--tests/contrib/test_xsrfutil.py3
-rw-r--r--tests/test__helpers.py3
-rw-r--r--tests/test_client.py1
-rw-r--r--tests/test_clientsecrets.py3
-rw-r--r--tests/test_file.py2
-rw-r--r--tests/test_jwt.py3
9 files changed, 0 insertions, 22 deletions
diff --git a/tests/contrib/appengine/test_appengine.py b/tests/contrib/appengine/test_appengine.py
index 569abc9..de26ae4 100644
--- a/tests/contrib/appengine/test_appengine.py
+++ b/tests/contrib/appengine/test_appengine.py
@@ -40,7 +40,6 @@ from oauth2client import clientsecrets
from oauth2client.contrib import appengine
from tests import http_mock
-__author__ = 'jcgregorio@google.com (Joe Gregorio)'
DATA_DIR = os.path.join(os.path.dirname(__file__), '..', '..', 'data')
DEFAULT_RESP = """\
diff --git a/tests/contrib/test_flask_util.py b/tests/contrib/test_flask_util.py
index 592286e..fa018bd 100644
--- a/tests/contrib/test_flask_util.py
+++ b/tests/contrib/test_flask_util.py
@@ -31,9 +31,6 @@ from oauth2client.contrib import flask_util
from tests import http_mock
-__author__ = 'jonwayne@google.com (Jon Wayne Parrott)'
-
-
DEFAULT_RESP = """\
{
"access_token": "foo_access_token",
diff --git a/tests/contrib/test_keyring_storage.py b/tests/contrib/test_keyring_storage.py
index 11986be..0f8090d 100644
--- a/tests/contrib/test_keyring_storage.py
+++ b/tests/contrib/test_keyring_storage.py
@@ -26,9 +26,6 @@ from oauth2client import client
from oauth2client.contrib import keyring_storage
-__author__ = 'jcgregorio@google.com (Joe Gregorio)'
-
-
class KeyringStorageTests(unittest.TestCase):
def test_constructor(self):
diff --git a/tests/contrib/test_xsrfutil.py b/tests/contrib/test_xsrfutil.py
index 0538795..3115827 100644
--- a/tests/contrib/test_xsrfutil.py
+++ b/tests/contrib/test_xsrfutil.py
@@ -34,9 +34,6 @@ TEST_EXTRA_INFO_1 = b'extra_info_1'
TEST_EXTRA_INFO_2 = b'more_extra_info'
-__author__ = 'jcgregorio@google.com (Joe Gregorio)'
-
-
class Test_generate_token(unittest.TestCase):
def test_bad_positional(self):
diff --git a/tests/test__helpers.py b/tests/test__helpers.py
index c4387e2..57b4cb0 100644
--- a/tests/test__helpers.py
+++ b/tests/test__helpers.py
@@ -21,9 +21,6 @@ import mock
from oauth2client import _helpers
-__author__ = 'jcgregorio@google.com (Joe Gregorio)'
-
-
class PositionalTests(unittest.TestCase):
def test_usage(self):
diff --git a/tests/test_client.py b/tests/test_client.py
index 49a9210..16830fd 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -38,7 +38,6 @@ from oauth2client import service_account
from oauth2client import transport
from tests import http_mock
-__author__ = 'jcgregorio@google.com (Joe Gregorio)'
DATA_DIR = os.path.join(os.path.dirname(__file__), 'data')
diff --git a/tests/test_clientsecrets.py b/tests/test_clientsecrets.py
index 3d93eb4..3fa9c30 100644
--- a/tests/test_clientsecrets.py
+++ b/tests/test_clientsecrets.py
@@ -25,9 +25,6 @@ from oauth2client import _helpers
from oauth2client import clientsecrets
-__author__ = 'jcgregorio@google.com (Joe Gregorio)'
-
-
DATA_DIR = os.path.join(os.path.dirname(__file__), 'data')
VALID_FILE = os.path.join(DATA_DIR, 'client_secrets.json')
INVALID_FILE = os.path.join(DATA_DIR, 'unfilled_client_secrets.json')
diff --git a/tests/test_file.py b/tests/test_file.py
index 6f75746..a443035 100644
--- a/tests/test_file.py
+++ b/tests/test_file.py
@@ -41,8 +41,6 @@ try:
except: # pragma: NO COVER
pass
-__author__ = 'jcgregorio@google.com (Joe Gregorio)'
-
_filehandle, FILENAME = tempfile.mkstemp('oauth2client_test.data')
os.close(_filehandle)
diff --git a/tests/test_jwt.py b/tests/test_jwt.py
index 9125c93..6502a4a 100644
--- a/tests/test_jwt.py
+++ b/tests/test_jwt.py
@@ -31,9 +31,6 @@ from oauth2client import transport
from tests import http_mock
-__author__ = 'jcgregorio@google.com (Joe Gregorio)'
-
-
_FORMATS_TO_CONSTRUCTOR_ARGS = {
'p12': 'private_key_pkcs12',
'pem': 'private_key_pkcs8_pem',