Added empty test module to test suite.
authorThomi Richards <thomi.richards@canonical.com>
Sun, 17 Nov 2013 22:25:19 +0000 (11:25 +1300)
committerThomi Richards <thomi.richards@canonical.com>
Sun, 17 Nov 2013 22:25:19 +0000 (11:25 +1300)
python/subunit/tests/__init__.py
python/subunit/tests/test_output_filter.py [new file with mode: 0644]

index a3caa38ce4d9aef242c4d8f465cee2352805b085..c9cc7ae6d7602a795fffd72f17aa4934202800ea 100644 (file)
@@ -6,7 +6,7 @@
 #  license at the users choice. A copy of both licenses are available in the
 #  project source as Apache-2.0 and BSD. You may not use this file except in
 #  compliance with one of these two licences.
-#  
+#
 #  Unless required by applicable law or agreed to in writing, software
 #  distributed under these licenses is distributed on an "AS IS" BASIS, WITHOUT
 #  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
@@ -20,6 +20,7 @@ from subunit.tests import (
     test_chunked,
     test_details,
     test_filters,
+    test_output_filter,
     test_progress_model,
     test_run,
     test_subunit_filter,
@@ -45,4 +46,5 @@ def test_suite():
     result.addTest(loader.loadTestsFromModule(test_subunit_tags))
     result.addTest(loader.loadTestsFromModule(test_subunit_stats))
     result.addTest(loader.loadTestsFromModule(test_run))
+    result.addTest(loader.loadTestsFromModule(test_output_filter))
     return result
diff --git a/python/subunit/tests/test_output_filter.py b/python/subunit/tests/test_output_filter.py
new file mode 100644 (file)
index 0000000..8317ffe
--- /dev/null
@@ -0,0 +1,22 @@
+#
+#  subunit: extensions to python unittest to get test results from subprocesses.
+#  Copyright (C) 2005  Thomi Richards <thomi.richards@canonical.com>
+#
+#  Licensed under either the Apache License, Version 2.0 or the BSD 3-clause
+#  license at the users choice. A copy of both licenses are available in the
+#  project source as Apache-2.0 and BSD. You may not use this file except in
+#  compliance with one of these two licences.
+#
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under these licenses is distributed on an "AS IS" BASIS, WITHOUT
+#  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
+#  license you chose for the specific language governing permissions and
+#  limitations under that license.
+#
+
+
+from testtools import TestCase
+
+
+class OutputFilterTests(TestCase):
+    pass