diff options
| author | Robert Collins <robertc@robertcollins.net> | 2009-10-10 14:42:32 +1100 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2009-10-10 14:42:32 +1100 |
| commit | 40ae70b04c7c88ed80a5e5b3f340f0c523b95e59 (patch) | |
| tree | bcf7bb54e48b98a714dd12f2bd7d59e685eefdb8 /python/subunit/tests/__init__.py | |
| parent | 65ddbd561a22e15e1ae5cdb3383c64bfd78e7d95 (diff) | |
| download | subunit-git-40ae70b04c7c88ed80a5e5b3f340f0c523b95e59.tar.gz | |
Move chunking to be \r\n based and create a dedicated module with that logic.
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 d842c7e..8869425 100644 --- a/python/subunit/tests/__init__.py +++ b/python/subunit/tests/__init__.py @@ -16,6 +16,7 @@ from subunit.tests import ( TestUtil, + test_chunked, test_content_type, test_content, test_progress_model, @@ -29,6 +30,7 @@ from subunit.tests import ( def test_suite(): result = TestUtil.TestSuite() + result.addTest(test_chunked.test_suite()) result.addTest(test_content_type.test_suite()) result.addTest(test_content.test_suite()) result.addTest(test_progress_model.test_suite()) |
