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

« back to all changes in this revision

Viewing changes to testtools/__init__.py

  • Committer: Max Bowsher
  • Date: 2010-12-18 13:57:02 UTC
  • mfrom: (27.1.1 jaunty)
  • Revision ID: maxb@f2s.com-20101218135702-2rzgh1qrq1210kt5
Tags: 0.9.8-1~bazaar1~hardy1
New upstream release. Closes: #606479

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    'ErrorHolder',
9
9
    'ExtendedToOriginalDecorator',
10
10
    'iterate_tests',
 
11
    'MultipleExceptions',
11
12
    'MultiTestResult',
12
13
    'PlaceHolder',
 
14
    'run_test_with',
13
15
    'TestCase',
14
16
    'TestResult',
15
17
    'TextTestResult',
18
20
    'skipIf',
19
21
    'skipUnless',
20
22
    'ThreadsafeForwardingResult',
 
23
    'try_import',
 
24
    'try_imports',
21
25
    ]
22
26
 
 
27
from testtools.helpers import (
 
28
    try_import,
 
29
    try_imports,
 
30
    )
23
31
from testtools.matchers import (
24
32
    Matcher,
25
33
    )
26
34
from testtools.runtest import (
 
35
    MultipleExceptions,
27
36
    RunTest,
28
37
    )
29
38
from testtools.testcase import (
31
40
    PlaceHolder,
32
41
    TestCase,
33
42
    clone_test_with_new_id,
 
43
    run_test_with,
34
44
    skip,
35
45
    skipIf,
36
46
    skipUnless,
59
69
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
60
70
# Otherwise it is major.minor.micro~$(revno).
61
71
 
62
 
__version__ = (0, 9, 6, 'final', 0)
 
72
__version__ = (0, 9, 8, 'final', 0)