From b1607061c66d25d41eabfd51b7d60230f68be57b Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Wed, 8 Apr 2009 23:00:52 +1000 Subject: Add done() to ProtocolTestClient. --- python/subunit/__init__.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python') 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 == "": -- cgit v1.2.1