1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright (c) 2008, 2009 Jonathan M. Lange. See LICENSE for details.
"""Extensions to the standard Python unittest library."""
__all__ = [
'clone_test_with_new_id',
'ConcurrentTestSuite',
'ExtendedToOriginalDecorator',
'iterate_tests',
'MultiTestResult',
'TestCase',
'TestResult',
'TextTestResult',
'RunTest',
'skip',
'skipIf',
'skipUnless',
'ThreadsafeForwardingResult',
]
from testtools.matchers import (
Matcher,
)
from testtools.runtest import (
RunTest,
)
from testtools.testcase import (
TestCase,
clone_test_with_new_id,
skip,
skipIf,
skipUnless,
)
from testtools.testresult import (
ExtendedToOriginalDecorator,
MultiTestResult,
TestResult,
TextTestResult,
ThreadsafeForwardingResult,
)
from testtools.testsuite import (
ConcurrentTestSuite,
)
from testtools.utils import iterate_tests
# same format as sys.version_info: "A tuple containing the five components of
# the version number: major, minor, micro, releaselevel, and serial. All
# values except releaselevel are integers; the release level is 'alpha',
# 'beta', 'candidate', or 'final'. The version_info value corresponding to the
# Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a
# releaselevel of 'dev' for unreleased under-development code.
#
# If the releaselevel is 'alpha' then the major/minor/micro components are not
# established at this point, and setup.py will use a version of next-$(revno).
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
# Otherwise it is major.minor.micro~$(revno).
__version__ = (0, 9, 2, 'final', 0)
|