s4:dsdb/drepl: update the source_dsa_obj/invocation_id in repsFrom
[Samba/gebeck_regimport.git] / lib / testtools / testtools / tests / __init__.py
blobdf9d44b26d9a66c8680beed8b6ff224fd1fd4829
1 """Tests for testtools itself."""
3 # See README for copyright and licensing details.
5 from unittest import TestSuite
8 def test_suite():
9 from testtools.tests import (
10 matchers,
11 test_compat,
12 test_content,
13 test_content_type,
14 test_deferredruntest,
15 test_distutilscmd,
16 test_fixturesupport,
17 test_helpers,
18 test_monkey,
19 test_run,
20 test_runtest,
21 test_spinner,
22 test_tags,
23 test_testcase,
24 test_testresult,
25 test_testsuite,
27 modules = [
28 matchers,
29 test_compat,
30 test_content,
31 test_content_type,
32 test_deferredruntest,
33 test_distutilscmd,
34 test_fixturesupport,
35 test_helpers,
36 test_monkey,
37 test_run,
38 test_runtest,
39 test_spinner,
40 test_tags,
41 test_testcase,
42 test_testresult,
43 test_testsuite,
45 suites = map(lambda x: x.test_suite(), modules)
46 return TestSuite(suites)