Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: a2aa2ef3136e4190d533447e13a79b49522eb0ce authored by Benjamin Peterson on 23 February 2012, 15:52:17 UTC
bump to 2.7.3rc1
Tip revision: a2aa2ef
__init__.py
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")
back to top