summaryrefslogtreecommitdiff
path: root/python/subunit/tests/__init__.py
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2009-10-10 14:42:32 +1100
committerRobert Collins <robertc@robertcollins.net>2009-10-10 14:42:32 +1100
commit40ae70b04c7c88ed80a5e5b3f340f0c523b95e59 (patch)
treebcf7bb54e48b98a714dd12f2bd7d59e685eefdb8 /python/subunit/tests/__init__.py
parent65ddbd561a22e15e1ae5cdb3383c64bfd78e7d95 (diff)
downloadsubunit-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__.py2
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())