diff options
| author | Robert Collins <robertc@robertcollins.net> | 2009-04-08 23:00:52 +1000 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2009-04-08 23:00:52 +1000 |
| commit | b1607061c66d25d41eabfd51b7d60230f68be57b (patch) | |
| tree | bf3a63eab2f4a04dd62872b75a39b8b3aa309ff7 /python/subunit | |
| parent | 9598e13c9849cdcf4faeaf7a0bc98620a82f3ef5 (diff) | |
| download | subunit-git-b1607061c66d25d41eabfd51b7d60230f68be57b.tar.gz | |
Add done() to ProtocolTestClient.
Diffstat (limited to 'python/subunit')
| -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 == "": |
