summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2014-12-19 17:05:18 -0800
committerThomas Kluyver <takowl@gmail.com>2014-12-19 17:05:36 -0800
commitfbe8a38de0fd59b525ea479e19a55f4d20edf107 (patch)
tree89562ccf23b29d485c58ded605217475526bad9b /tests
parent77357d107b1ebb38287695149d7cf1e66df4addd (diff)
downloadpexpect-fbe8a38de0fd59b525ea479e19a55f4d20edf107.tar.gz
Allow spawn() and friends to be used as context managers
Closes gh-111
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_misc.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_misc.py b/tests/test_misc.py
index 28df570..792afa2 100755
--- a/tests/test_misc.py
+++ b/tests/test_misc.py
@@ -141,6 +141,16 @@ class TestCaseMisc(PexpectTestCase.PexpectTestCase):
with self.assertRaises(pexpect.EOF):
child.expect('the unexpected')
+ def test_with(self):
+ "spawn can be used as a context manager"
+ with pexpect.spawn(sys.executable + ' echo_w_prompt.py') as p:
+ p.expect('<in >')
+ p.sendline(b'alpha')
+ p.expect(b'<out>alpha')
+ assert p.isalive()
+
+ assert not p.isalive()
+
def test_terminate(self):
" test force terminate always succeeds (SIGKILL). "
child = pexpect.spawn('cat')