From 99783173a93b0e9705b4dd7f20af7c3337620e82 Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Tue, 19 Aug 2014 14:40:33 +1000 Subject: * ``FakeProcess`` now supports kill(). (Steve Kowalik) --- NEWS | 1 + lib/fixtures/_fixtures/popen.py | 3 +++ lib/fixtures/tests/_fixtures/test_popen.py | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/NEWS b/NEWS index b4ec0cd..e34391d 100644 --- a/NEWS +++ b/NEWS @@ -11,6 +11,7 @@ CHANGES * ``FakePopen`` now supports being called under a context manager (IE: with). (Steve Kowalik) +* ``FakeProcess`` now supports kill(). (Steve Kowalik) 0.3.14 ~~~~~~ diff --git a/lib/fixtures/_fixtures/popen.py b/lib/fixtures/_fixtures/popen.py index 80629fd..67f20e3 100644 --- a/lib/fixtures/_fixtures/popen.py +++ b/lib/fixtures/_fixtures/popen.py @@ -54,6 +54,9 @@ class FakeProcess(object): def __exit__(self, exc_type, exc_value, traceback): self.wait() + def kill(self): + pass + def wait(self): if self.returncode is None: self.communicate() diff --git a/lib/fixtures/tests/_fixtures/test_popen.py b/lib/fixtures/tests/_fixtures/test_popen.py index 8eb0174..6d47291 100644 --- a/lib/fixtures/tests/_fixtures/test_popen.py +++ b/lib/fixtures/tests/_fixtures/test_popen.py @@ -94,3 +94,7 @@ class TestFakeProcess(testtools.TestCase): proc = FakeProcess({}, {'stdout': BytesIO(_b('foo'))}) self.assertEqual((_b('foo'), ''), proc.communicate()) self.assertEqual(0, proc.returncode) + + def test_kill(self): + proc = FakeProcess({}, {}) + self.assertIs(None, proc.kill()) -- cgit v1.2.1