summaryrefslogtreecommitdiff
path: root/lib/subunit/python/testtools/testresult/__init__.py
blob: 2ee3d2529395fc51e1938b0c00c092fccec8c1ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright (c) 2009 Jonathan M. Lange. See LICENSE for details.

"""Test result objects."""

__all__ = [
    'ExtendedToOriginalDecorator',
    'MultiTestResult',
    'TestResult',
    'TextTestResult',
    'ThreadsafeForwardingResult',
    ]

from real import (
    ExtendedToOriginalDecorator,
    MultiTestResult,
    TestResult,
    TextTestResult,
    ThreadsafeForwardingResult,
    )