aboutsummaryrefslogtreecommitdiff
path: root/tests/test__helpers.py
diff options
context:
space:
mode:
authorDanny Hermes <daniel.j.hermes@gmail.com>2015-09-21 16:11:15 -0700
committerDanny Hermes <daniel.j.hermes@gmail.com>2015-09-21 16:12:00 -0700
commit9641c315ca0bcfbd57b6d435e12cbb376a372c96 (patch)
treeb3254ed634e8fa20512af142879c77a2302de96d /tests/test__helpers.py
parentfb2997cf695d3e4b495d581c4ec0af0c4a7ba986 (diff)
downloadoauth2client-9641c315ca0bcfbd57b6d435e12cbb376a372c96.tar.gz
Adding no-cover pragmas to unittest.main().
This is so we get 100% line coverage in our tests. Also adding unittest.main() lines to the files missing it: test__helpers.py test__pycrypto_crypt.py test_crypt.py test_devshell.py test_gce.py test_keyring_storage.py test_service_account.py test_util.py
Diffstat (limited to 'tests/test__helpers.py')
-rw-r--r--tests/test__helpers.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test__helpers.py b/tests/test__helpers.py
index 0a7fecf..6ddef47 100644
--- a/tests/test__helpers.py
+++ b/tests/test__helpers.py
@@ -115,3 +115,7 @@ class Test__urlsafe_b64decode(unittest.TestCase):
bad_string = b'+'
self.assertRaises((TypeError, binascii.Error),
_urlsafe_b64decode, bad_string)
+
+
+if __name__ == '__main__': # pragma: NO COVER
+ unittest.main()