diff options
| author | Robert Collins <robertc@robertcollins.net> | 2009-08-08 10:07:58 +1000 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2009-08-08 10:07:58 +1000 |
| commit | 3be3c3dc6f36e1ecaf668abc46d3c7942c4012bb (patch) | |
| tree | 6b5776f40cb684ab124bb801c84e64afec96210e /python/subunit/tests | |
| parent | 23247df13197b36b92ffd1f1b0a23258eb6c5dae (diff) | |
| download | subunit-git-3be3c3dc6f36e1ecaf668abc46d3c7942c4012bb.tar.gz | |
Review feedback.
Diffstat (limited to 'python/subunit/tests')
| -rw-r--r-- | python/subunit/tests/test_test_protocol.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/python/subunit/tests/test_test_protocol.py b/python/subunit/tests/test_test_protocol.py index 1e2246d..a036192 100644 --- a/python/subunit/tests/test_test_protocol.py +++ b/python/subunit/tests/test_test_protocol.py @@ -30,8 +30,9 @@ import subunit.iso8601 as iso8601 class MockTestProtocolServerClient(object): """A mock protocol server client to test callbacks. - Note that this is deliberately not python 2.7 complete, to allow - testing compatibility. + Note that this is deliberately not Python 2.7 complete, to allow + testing compatibility - we need a TestResult that will not have new methods + like addExpectedFailure. """ def __init__(self): @@ -654,7 +655,7 @@ class TestTestProtocolServerAddxFail(unittest.TestCase): class TestTestProtocolServerAddSkip(unittest.TestCase): """Tests for the skip keyword. - In python this meets the testtools extended TestResult contract. + In Python this meets the testtools extended TestResult contract. (See https://launchpad.net/testtools). """ |
