summaryrefslogtreecommitdiff
path: root/tests/test_misc.py
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2013-10-09 11:16:29 -0700
committerThomas Kluyver <takowl@gmail.com>2013-10-09 11:16:29 -0700
commit5ead18e1afe818fe6abfa7494c7d3655911626ec (patch)
tree8f465c1ae4de88d93b523a40c19ece1ee6159916 /tests/test_misc.py
parent6c46341b69e98a523214478305916207e5c92414 (diff)
downloadpexpect-better-test-winsize.tar.gz
Improve test for setting and retrieving window sizebetter-test-winsize
Diffstat (limited to 'tests/test_misc.py')
-rwxr-xr-xtests/test_misc.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_misc.py b/tests/test_misc.py
index 00385ec..5c7f546 100755
--- a/tests/test_misc.py
+++ b/tests/test_misc.py
@@ -219,10 +219,6 @@ class TestCaseMisc(PexpectTestCase.PexpectTestCase):
pass
else:
self.fail ("child.expect({}) should have raised a TypeError")
- def test_winsize(self):
- child = pexpect.spawn('cat')
- child.setwinsize(10,13)
- assert child.getwinsize()==(10,13), "getwinsize() did not return (10,13)"
def test_env(self):
default = pexpect.run('env')