Home | History | Annotate | Download | only in test

Lines Matching refs:loadTestsFromModule

82     ### Tests for TestLoader.loadTestsFromModule
94 suite = loader.loadTestsFromModule(m)
107 suite = loader.loadTestsFromModule(m)
121 suite = loader.loadTestsFromModule(m)
128 # What happens if loadTestsFromModule() is given something other
132 # should either be documented or loadTestsFromModule() should
145 suite = loader.loadTestsFromModule(NotAModule)
151 # Check that loadTestsFromModule honors (or not) a module
168 suite = loader.loadTestsFromModule(m)
173 suite = loader.loadTestsFromModule(m, use_load_tests=False)
184 suite = loader.loadTestsFromModule(m)
192 ### /Tests for TestLoader.loadTestsFromModule()
1041 self.assertEqual(list(loader.loadTestsFromModule(m)), tests_1)
1044 self.assertEqual(list(loader.loadTestsFromModule(m)), tests_2)
1136 self.assertEqual(list(loader.loadTestsFromModule(m)), tests)
1245 self.assertEqual(loader.loadTestsFromModule(m), tests)