Kaydet (Commit) 2b293cf1 authored tarafından Michael Foord's avatar Michael Foord

Merged revisions 81878 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81878 | michael.foord | 2010-06-10 21:40:21 +0100 (Thu, 10 Jun 2010) | 2 lines

  Fix issue with nested test suites debug method and module setups. (unittest)
........
üst d8efa020
......@@ -109,7 +109,7 @@ class TestSuite(BaseTestSuite):
continue
if hasattr(test, '_wrapped_run'):
test._wrapped_run(result)
test._wrapped_run(result, debug)
elif not debug:
test(result)
else:
......
......@@ -494,7 +494,9 @@ class TestSetups(unittest.TestCase):
Test.__module__ = 'Module'
sys.modules['Module'] = Module
suite = unittest.defaultTestLoader.loadTestsFromTestCase(Test)
_suite = unittest.defaultTestLoader.loadTestsFromTestCase(Test)
suite = unittest.TestSuite()
suite.addTest(_suite)
messages = ('setUpModule', 'tearDownModule', 'setUpClass', 'tearDownClass', 'test_something')
for phase, msg in enumerate(messages):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment