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 | 949d94ed0071d8972a3ef839848f18796de2f337 (patch) | |
| tree | 8c76e5a68ffd8b8cf8634e1b6a67aaa664fc71eb /python/subunit/tests/__init__.py | |
| parent | 1d88fc913be6d63aa967da4fcabd13905b6b912f (diff) | |
| download | subunit-git-949d94ed0071d8972a3ef839848f18796de2f337.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 |
