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.
This commit is contained in:
Bryan Bishop
2013-08-04 10:41:37 -05:00
parent 3011f9243c
commit fac185b781

View File

@@ -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"