diff options
| author | Robert Collins <robertc@robertcollins.net> | 2010-05-13 03:22:47 +1200 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2010-05-13 03:22:47 +1200 |
| commit | 4cbec79b1c2821923ee10bba12b6c05e0bab53c7 (patch) | |
| tree | 526500154f9763b39daf6e4e885fe1449b35e69c /python/subunit/tests/test_test_protocol.py | |
| parent | bb916347d9a702d432a2c5c81a9b161b3978346f (diff) | |
| download | subunit-4cbec79b1c2821923ee10bba12b6c05e0bab53c7.tar.gz | |
On windows, ProtocolTestCase and TestProtocolClient will set their streams to
binary mode by calling into msvcrt; this avoids having their input or output
mangled by the default line ending translation on that platform.
(Robert Collins, Martin [gz], #579296)
Diffstat (limited to 'python/subunit/tests/test_test_protocol.py')
| -rw-r--r-- | python/subunit/tests/test_test_protocol.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/subunit/tests/test_test_protocol.py b/python/subunit/tests/test_test_protocol.py index f10380b..ae9cf53 100644 --- a/python/subunit/tests/test_test_protocol.py +++ b/python/subunit/tests/test_test_protocol.py @@ -102,6 +102,9 @@ class TestTestProtocolServerPipe(unittest.TestCase): "------------\n\n")]) self.assertEqual(client.testsRun, 3) + def test_non_test_characters_forwarded_immediately(self): + pass + class TestTestProtocolServerStartTest(unittest.TestCase): |
