Searched refs:loadTestsFromModule (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Lib/unittest/test/ |
D | test_discovery.py | 75 orig_load_tests = loader.loadTestsFromModule 76 def loadTestsFromModule(module, pattern=None): function 80 loader.loadTestsFromModule = loadTestsFromModule 121 orig_load_tests = loader.loadTestsFromModule 122 def loadTestsFromModule(module, pattern=None): function 126 loader.loadTestsFromModule = loadTestsFromModule 176 orig_load_tests = loader.loadTestsFromModule 177 def loadTestsFromModule(module, pattern=None): function 181 loader.loadTestsFromModule = loadTestsFromModule 250 orig_load_tests = loader.loadTestsFromModule [all …]
|
D | test_loader.py | 120 suite = loader.loadTestsFromModule(m) 133 suite = loader.loadTestsFromModule(m) 147 suite = loader.loadTestsFromModule(m) 171 suite = loader.loadTestsFromModule(NotAModule) 195 suite = loader.loadTestsFromModule(m) 203 suite = loader.loadTestsFromModule(m, use_load_tests=False) 225 suite = loader.loadTestsFromModule(m, False) 253 suite = loader.loadTestsFromModule(m, use_load_tests=False) 281 loader.loadTestsFromModule(m, False, 'testme.*') 310 loader.loadTestsFromModule( [all …]
|
D | __init__.py | 16 suite.addTest(loader.loadTestsFromModule(module))
|
D | test_program.py | 67 def loadTestsFromModule(self, module): member in Test_TestProgram.FooBarLoader
|
/third_party/python/Lib/unittest/ |
D | loader.py | 98 def loadTestsFromModule(self, module, *args, pattern=None, **kws): member in TestLoader 191 return self.loadTestsFromModule(obj) 460 return self.loadTestsFromModule(module, pattern=pattern), False 483 tests = self.loadTestsFromModule(package, pattern=pattern) 516 return _makeLoader(prefix, sortUsing, suiteClass).loadTestsFromModule(\
|
D | main.py | 156 self.test = self.testLoader.loadTestsFromModule(self.module)
|
/third_party/python/Lib/unittest/test/testmock/ |
D | __init__.py | 16 suite.addTest(loader.loadTestsFromModule(module))
|
/third_party/python/Lib/lib2to3/tests/ |
D | support.py | 31 tests = unittest.TestLoader().loadTestsFromModule(test_mod)
|
/third_party/python/Lib/test/libregrtest/ |
D | runtest.py | 256 tests = loader.loadTestsFromModule(the_module)
|
/third_party/python/Doc/library/ |
D | test.rst | 170 unittest.TestLoader.loadTestsFromModule if ``test_main`` does not exist. The 464 ``unittest.TestLoader.loadTestsFromModule()``. This is usually seen in the
|
D | unittest.rst | 1763 .. method:: loadTestsFromModule(module, pattern=None) 2281 :meth:`TestLoader.loadTestsFromModule` with the following arguments:: 2285 where *pattern* is passed straight through from ``loadTestsFromModule``. It
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 1986 The :meth:`TestLoader.loadTestsFromModule() <unittest.TestLoader.loadTestsFromModule>` 2346 :meth:`unittest.TestLoader.loadTestsFromModule` method now is
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 2346 __init__.py. TestLoader.loadTestsFromModule() still accepts use_load_tests,
|