mirror of
https://github.com/python/cpython.git
synced 2025-07-28 21:55:21 +00:00
unittest.TestLoader creates a TestSuite before calling load_tests. Issue 7799.
This commit is contained in:
parent
2373926964
commit
0877060f86
2 changed files with 4 additions and 1 deletions
|
@ -272,12 +272,14 @@ class Test_TestLoader(TestCase):
|
|||
|
||||
load_tests_args = []
|
||||
def load_tests(loader, tests, pattern):
|
||||
self.assertIsInstance(tests, unittest.TestSuite)
|
||||
load_tests_args.extend((loader, tests, pattern))
|
||||
return tests
|
||||
m.load_tests = load_tests
|
||||
|
||||
loader = unittest.TestLoader()
|
||||
suite = loader.loadTestsFromModule(m)
|
||||
self.assertIsInstance(suite, unittest.TestSuite)
|
||||
self.assertEquals(load_tests_args, [loader, suite, None])
|
||||
|
||||
load_tests_args = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue