diff options
Diffstat (limited to 'python/subunit/tests')
-rw-r--r-- | python/subunit/tests/test_filters.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/python/subunit/tests/test_filters.py b/python/subunit/tests/test_filters.py index 0a5e7c7..bc797da 100644 --- a/python/subunit/tests/test_filters.py +++ b/python/subunit/tests/test_filters.py @@ -21,6 +21,17 @@ from testtools import TestCase from subunit.filters import find_stream +from subunit import read_test_list + + +class TestReadTestList(TestCase): + + def test_read_list(self): + with NamedTemporaryFile() as f: + f.write(b'foo\nbar\n# comment\nother # comment\n') + f.flush() + self.assertEqual(read_test_list(f.name), ['foo', 'bar', 'other']) + class TestFindStream(TestCase): |