示例#1
0
文件: all_tests.py 项目: crs4/pydoop
def suite(path=None):
    suites = []
    for module in TEST_MODULE_NAMES:
        suites.append(get_module(module, path).suite())
    return unittest.TestSuite(suites)
示例#2
0
文件: all_tests.py 项目: wtj/pydoop
def suite(path=None):
    suites = []
    for module in TEST_MODULE_NAMES:
        suites.append(get_module(module, path).suite())
    return unittest.TestSuite(suites)
示例#3
0
def suite(path=None):
    suites = []
    for module in ["all_tests_pipes"]:
        suites.append(get_module(module, path).suite(path))
    return unittest.TestSuite(suites)