You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import sys
|
|
import unittest
|
|
|
|
class FooTest(unittest.TestCase):
|
|
def test_foo(self):
|
|
# use 2.6 syntax to demonstrate conversion
|
|
print 'In test_foo, using Python %s...' % (sys.version_info,)
|
|
self.assertTrue(False)
|