diff options
Diffstat (limited to 'lib/python2.7/unittest/test/__init__.py')
-rw-r--r-- | lib/python2.7/unittest/test/__init__.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/python2.7/unittest/test/__init__.py b/lib/python2.7/unittest/test/__init__.py new file mode 100644 index 0000000..99b730b --- /dev/null +++ b/lib/python2.7/unittest/test/__init__.py @@ -0,0 +1,21 @@ +import os +import sys +import unittest + + +here = os.path.dirname(__file__) +loader = unittest.defaultTestLoader + +def suite(): + suite = unittest.TestSuite() + for fn in os.listdir(here): + if fn.startswith("test") and fn.endswith(".py"): + modname = "unittest.test." + fn[:-3] + __import__(modname) + module = sys.modules[modname] + suite.addTest(loader.loadTestsFromModule(module)) + return suite + + +if __name__ == "__main__": + unittest.main(defaultTest="suite") |