~lifeless/debian/sid/python-testtools/packaging

« back to all changes in this revision

Viewing changes to testtools/testresult/__init__.py

  • Committer: Robert Collins
  • Date: 2009-12-15 23:13:38 UTC
  • mfrom: (16.11.2 upstream)
  • Revision ID: robertc@robertcollins.net-20091215231338-en4foxftyfaaqgn0
* New upstream release.
* Include the manual in the package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
    )