예제 #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
파일: all_tests.py 프로젝트: xuande/pydoop
def suite(path=None):
    suites = []
    for module in ["all_tests_pipes"]:
        suites.append(get_module(module, path).suite(path))
    return unittest.TestSuite(suites)