diff options
| author | Robert Collins <robertc@robertcollins.net> | 2008-12-08 10:29:06 +1100 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2008-12-08 10:29:06 +1100 |
| commit | f13d8c23699908a7a33aef220eb94fdd4d194308 (patch) | |
| tree | 8c76e5a68ffd8b8cf8634e1b6a67aaa664fc71eb /python/subunit/tests/__init__.py | |
| parent | 7c75e1bb75ae64ff0f3ef21358a38c90f8100935 (diff) | |
| download | subunit-f13d8c23699908a7a33aef220eb94fdd4d194308.tar.gz | |
Add a tap2subunit filter program.
Diffstat (limited to 'python/subunit/tests/__init__.py')
| -rw-r--r-- | python/subunit/tests/__init__.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/python/subunit/tests/__init__.py b/python/subunit/tests/__init__.py index 544d0e7..7f501c7 100644 --- a/python/subunit/tests/__init__.py +++ b/python/subunit/tests/__init__.py @@ -17,9 +17,14 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -from subunit.tests import TestUtil, test_test_protocol +from subunit.tests import ( + TestUtil, + test_tap2subunit, + test_test_protocol, + ) def test_suite(): result = TestUtil.TestSuite() result.addTest(test_test_protocol.test_suite()) + result.addTest(test_tap2subunit.test_suite()) return result |
