| class BrokenTest(unittest.TestCase.failureException): |
| return '%s: %s: %s works now' % ( |
| (self.__class__.__name__, name, reason)) |
| def broken(reason, *exceptions): |
| '''Indicates a failing (or erroneous) test case fails that should succeed. |
| If the test fails with an exception, list the exception type in args''' |
| def wrapper(test_method): |
| def replacement(*args, **kwargs): |
| test_method(*args, **kwargs) |
| except exceptions or unittest.TestCase.failureException: |
| raise BrokenTest(test_method.__name__, reason) |
| replacement.__doc__ = test_method.__doc__ |
| replacement.__name__ = 'XXX_' + test_method.__name__ |
| replacement.todo = reason |