Adding a real check for unittest2 features.

This commit is contained in:
C Nelson 2012-04-06 12:11:40 -05:00
parent 4de0c12b43
commit 8dc750b1e4

View File

@ -16,6 +16,11 @@ try:
except ImportError:
import unittest
# Check for things we need in unittest.
if not hasattr(unittest.TestCase, 'setUpClass'):
print "The unittest2 module or Python 2.7 is required to run this script."
sys.exit(1)
if not hasattr(json, "dumps"):
json.dumps = json.write