~bzr/ubuntu/natty/python-testtools/bzr-ppa

« back to all changes in this revision

Viewing changes to testtools/__init__.py

  • Committer: Robert Collins
  • Date: 2010-11-14 15:49:58 UTC
  • mfrom: (16.11.4 upstream)
  • Revision ID: robertc@robertcollins.net-20101114154958-lwb16rdhehq6q020
New snapshot for testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
__all__ = [
6
6
    'clone_test_with_new_id',
7
7
    'ConcurrentTestSuite',
 
8
    'ErrorHolder',
8
9
    'ExtendedToOriginalDecorator',
9
10
    'iterate_tests',
 
11
    'MultipleExceptions',
10
12
    'MultiTestResult',
 
13
    'PlaceHolder',
 
14
    'run_test_with',
11
15
    'TestCase',
12
16
    'TestResult',
13
17
    'TextTestResult',
25
29
    RunTest,
26
30
    )
27
31
from testtools.testcase import (
 
32
    ErrorHolder,
 
33
    MultipleExceptions,
 
34
    PlaceHolder,
28
35
    TestCase,
29
36
    clone_test_with_new_id,
 
37
    run_test_with,
30
38
    skip,
31
39
    skipIf,
32
40
    skipUnless,
55
63
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
56
64
# Otherwise it is major.minor.micro~$(revno).
57
65
 
58
 
__version__ = (0, 9, 4, 'final', 0)
 
66
__version__ = (0, 9, 8, 'dev', 0)