summaryrefslogtreecommitdiff
path: root/tests/tests.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2013-08-04 10:41:37 -0500
committerBryan Bishop <kanzure@gmail.com>2013-08-04 10:41:37 -0500
commitfac185b7814d5a47a33fef25d64e4ae94586670d (patch)
treea83de061f81843709db4afc9e23c24c683601d87 /tests/tests.py
parent3011f9243cbe4b0de7ab2392941385c705697909 (diff)
remove python2.6 check in tests.py
There's no way that this library supports python2.6, and even if it does, it's not a target or something worth maintaining.
Diffstat (limited to 'tests/tests.py')
-rw-r--r--tests/tests.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/tests.py b/tests/tests.py
index 606c105..817be51 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -96,11 +96,6 @@ try:
except ImportError:
import unittest
-# check for things we need in unittest
-if not hasattr(unittest.TestCase, 'setUpClass'):
- sys.stderr.write("The unittest2 module or Python 2.7 is required to run this script.")
- sys.exit(1)
-
class TestCram(unittest.TestCase):
"this is where i cram all of my unit tests together"