summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/subunit/__init__.py3
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 == "":