mirror of
https://github.com/python/cpython.git
synced 2025-08-19 00:00:48 +00:00
Improvement to fix for issue 9926 to allow TestResult to be reused.
This commit is contained in:
parent
62a1aaeeac
commit
5657ff8aa0
2 changed files with 6 additions and 1 deletions
|
@ -353,11 +353,15 @@ class Test_TestSuite(unittest.TestCase, TestEquality):
|
|||
unittest.TestSuite.__call__(self, *args, **kw)
|
||||
|
||||
suite = MySuite()
|
||||
result = unittest.TestResult()
|
||||
wrapper = unittest.TestSuite()
|
||||
wrapper.addTest(suite)
|
||||
wrapper(unittest.TestResult())
|
||||
wrapper(result)
|
||||
self.assertTrue(suite.called)
|
||||
|
||||
# reusing results should be permitted even if abominable
|
||||
self.assertFalse(result._testRunEntered)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue