Raise this exception to mark a test as a known failing test.
| 8 | from nose.plugins.errorclass import ErrorClass, ErrorClassPlugin |
| 9 | |
| 10 | class KnownFailureTest(Exception): |
| 11 | '''Raise this exception to mark a test as a known failing test.''' |
| 12 | pass |
| 13 | |
| 14 | |
| 15 | class KnownFailure(ErrorClassPlugin): |