Second part of fix for bug #6494 - Incorrect FileStatus returned in NT_CREATE_ANDX.
[nivanova/samba-autobuild/.git] / lib / subunit / python / testtools / testresult / __init__.py
1 # Copyright (c) 2009 Jonathan M. Lange. See LICENSE for details.
2
3 """Test result objects."""
4
5 __all__ = [
6     'ExtendedToOriginalDecorator',
7     'MultiTestResult',
8     'TestResult',
9     'TextTestResult',
10     'ThreadsafeForwardingResult',
11     ]
12
13 from real import (
14     ExtendedToOriginalDecorator,
15     MultiTestResult,
16     TestResult,
17     TextTestResult,
18     ThreadsafeForwardingResult,
19     )