summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Foord <fuzzyman@voidspace.org.uk>2010-12-19 14:12:23 (GMT)
committerMichael Foord <fuzzyman@voidspace.org.uk>2010-12-19 14:12:23 (GMT)
commit5657ff8aa0aa9d53f92fc11cc2d4b7e23f5cb95a (patch)
tree0ac6fac427a34cc3d93390285468c9ab0ea8198e
parent62a1aaeeac5c6d2349a0698e1ba23870a6756e5e (diff)
downloadcpython-5657ff8aa0aa9d53f92fc11cc2d4b7e23f5cb95a.zip
cpython-5657ff8aa0aa9d53f92fc11cc2d4b7e23f5cb95a.tar.gz
cpython-5657ff8aa0aa9d53f92fc11cc2d4b7e23f5cb95a.tar.bz2
Improvement to fix for issue 9926 to allow TestResult to be reused.
-rw-r--r--Lib/unittest/suite.py1
-rw-r--r--Lib/unittest/test/test_suite.py6
2 files changed, 6 insertions, 1 deletions
diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py
index e8fbdc3..c0ae2ae 100644
--- a/Lib/unittest/suite.py
+++ b/Lib/unittest/suite.py
@@ -107,6 +107,7 @@ class TestSuite(BaseTestSuite):
if topLevel:
self._tearDownPreviousClass(None, result)
self._handleModuleTearDown(result)
+ result._testRunEntered = False
return result
def debug(self):
diff --git a/Lib/unittest/test/test_suite.py b/Lib/unittest/test/test_suite.py
index d212bd0..72fb527 100644
--- a/Lib/unittest/test/test_suite.py
+++ b/Lib/unittest/test/test_suite.py
@@ -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()