diff options
| author | Robert Collins <robertc@robertcollins.net> | 2009-08-08 17:03:38 +1000 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2009-08-08 17:03:38 +1000 |
| commit | 37080a3a8b3b3414e8d6ec1eb68fb6000d926a0a (patch) | |
| tree | 15d15c7208e43515435d4ed8f6d0a7f4d588b929 /python/subunit/tests/__init__.py | |
| parent | cc4699a328dd76ecaad6a2e94b17845793bdf51d (diff) | |
| download | subunit-git-37080a3a8b3b3414e8d6ec1eb68fb6000d926a0a.tar.gz | |
Extend the progress model to support a push/pop model.
Diffstat (limited to 'python/subunit/tests/__init__.py')
| -rw-r--r-- | python/subunit/tests/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/subunit/tests/__init__.py b/python/subunit/tests/__init__.py index 11f3095..bbe12b1 100644 --- a/python/subunit/tests/__init__.py +++ b/python/subunit/tests/__init__.py @@ -19,6 +19,7 @@ from subunit.tests import ( TestUtil, + test_progress_model, test_subunit_filter, test_subunit_stats, test_subunit_tags, @@ -29,6 +30,7 @@ from subunit.tests import ( def test_suite(): result = TestUtil.TestSuite() + result.addTest(test_progress_model.test_suite()) result.addTest(test_test_results.test_suite()) result.addTest(test_test_protocol.test_suite()) result.addTest(test_tap2subunit.test_suite()) |
