diff options
| author | Robert Collins <robertc@robertcollins.net> | 2009-10-04 21:09:40 +1100 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2009-10-04 21:09:40 +1100 |
| commit | 47dc87aec4dc886ae625074c7d03410422453a31 (patch) | |
| tree | 8044e69c082096887164b8b8b2230888bfcf295a /python/subunit/tests/__init__.py | |
| parent | 32f4cb1fb06fa08a76c75bc0881ef9a17e6c17d2 (diff) | |
| download | subunit-git-47dc87aec4dc886ae625074c7d03410422453a31.tar.gz | |
Add ContentType class.
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 36e93ba..d0648f2 100644 --- a/python/subunit/tests/__init__.py +++ b/python/subunit/tests/__init__.py @@ -16,6 +16,7 @@ from subunit.tests import ( TestUtil, + test_content_type, test_progress_model, test_subunit_filter, test_subunit_stats, @@ -27,6 +28,7 @@ from subunit.tests import ( def test_suite(): result = TestUtil.TestSuite() + result.addTest(test_content_type.test_suite()) result.addTest(test_progress_model.test_suite()) result.addTest(test_test_results.test_suite()) result.addTest(test_test_protocol.test_suite()) |
