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 | 4b0fa892e407c70092335aa478ddf578153002b0 (patch) | |
| tree | 15d15c7208e43515435d4ed8f6d0a7f4d588b929 /python/subunit/tests/__init__.py | |
| parent | 10d68f9747c716157036ebd9768c1aeb52a3f50a (diff) | |
| download | subunit-4b0fa892e407c70092335aa478ddf578153002b0.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()) |
