diff options
| author | Robert Collins <robertc@robertcollins.net> | 2009-04-09 13:39:56 +1000 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2009-04-09 13:39:56 +1000 |
| commit | 53f3c8d03287fbef49885c0810673b2ab554f694 (patch) | |
| tree | bf3a63eab2f4a04dd62872b75a39b8b3aa309ff7 /python | |
| parent | f52af7d951f8a707d51d3ddf5a42656dcfd26c0a (diff) | |
| parent | b1607061c66d25d41eabfd51b7d60230f68be57b (diff) | |
| download | subunit-git-53f3c8d03287fbef49885c0810673b2ab554f694.tar.gz | |
Improve docs and handle the testtools extended TestResult protocol.
Diffstat (limited to 'python')
| -rw-r--r-- | python/subunit/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/subunit/__init__.py b/python/subunit/__init__.py index 3402ae5..7d800a8 100644 --- a/python/subunit/__init__.py +++ b/python/subunit/__init__.py @@ -342,6 +342,9 @@ class TestProtocolClient(unittest.TestResult): """Mark a test as starting its test run.""" self._stream.write("test: %s\n" % test.id()) + def done(self): + """Obey the testtools result.done() interface.""" + def RemoteError(description=""): if description == "": |
