Make test_importlib output easier to trace back to the failing test

class.
This commit is contained in:
Brett Cannon 2013-11-22 14:47:09 -05:00
parent e0c3bd78c5
commit 873d1226b7
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@ def test_both(test_class, **kwargs):
(test_class, unittest.TestCase))
source_tests = types.new_class('Source_'+test_class.__name__,
(test_class, unittest.TestCase))
frozen_tests.__module__ = source_tests.__module__ = test_class.__module__
for attr, (frozen_value, source_value) in kwargs.items():
setattr(frozen_tests, attr, frozen_value)
setattr(source_tests, attr, source_value)