summaryrefslogtreecommitdiff
path: root/lib/fixtures/tests/_fixtures/test_popen.py
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2014-08-22 14:44:00 +1200
committerRobert Collins <robertc@robertcollins.net>2014-08-22 14:44:00 +1200
commit1777cf19bf816bb9d3cc054ad502954ae3a0a65c (patch)
tree06d2104c98fc2429ed4ab713014b5dc4adb9c0a6 /lib/fixtures/tests/_fixtures/test_popen.py
parent9ec1b3af612bf93882dda4ce07a6ef4329e1a6f8 (diff)
parent1d17cdade0aa8be68b39e79af50f52d273a9fbf2 (diff)
downloadfixtures-1777cf19bf816bb9d3cc054ad502954ae3a0a65c.tar.gz
* ``FakePopen`` now supports being called under a context manager (IE: with).
(Steve Kowalik)
Diffstat (limited to 'lib/fixtures/tests/_fixtures/test_popen.py')
-rw-r--r--lib/fixtures/tests/_fixtures/test_popen.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/fixtures/tests/_fixtures/test_popen.py b/lib/fixtures/tests/_fixtures/test_popen.py
index dc9374c..8eb0174 100644
--- a/lib/fixtures/tests/_fixtures/test_popen.py
+++ b/lib/fixtures/tests/_fixtures/test_popen.py
@@ -72,6 +72,11 @@ class TestFakePopen(testtools.TestCase, TestWithFixtures):
self.assertEqual(1, proc.wait())
self.assertEqual(1, proc.returncode)
+ def test_with_popen_custom(self):
+ fixture = self.useFixture(FakePopen())
+ with subprocess.Popen(['ls -lh']) as proc:
+ self.assertEqual(None, proc.returncode)
+
class TestFakeProcess(testtools.TestCase):