summaryrefslogtreecommitdiff
path: root/tests/interact_unicode.py
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2015-09-20 18:16:08 -0700
committerJeff Quast <contact@jeffquast.com>2015-09-20 18:16:08 -0700
commitc8cd9c626cd4641d558c9da266fd2aa058d8e1db (patch)
tree18cd0f9e4a346fbf0ff90720f34b6be4f0e7e6a6 /tests/interact_unicode.py
parent3596e7a2c0a0c2a845342b5d18aa6f5822b33a4e (diff)
parentf5993888e092bd8cecc98ac9558700d4fe8624cf (diff)
downloadpexpect-faq-about-gevent.tar.gz
Merge remote-tracking branch 'origin/master' into faq-about-geventfaq-about-gevent
Diffstat (limited to 'tests/interact_unicode.py')
-rw-r--r--tests/interact_unicode.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/interact_unicode.py b/tests/interact_unicode.py
deleted file mode 100644
index f4c1f55..0000000
--- a/tests/interact_unicode.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python
-'''
-Just like interact.py, but using spawnu instead of spawn
-'''
-try:
- # This allows coverage to measure code run in this process
- import coverage
- coverage.process_startup()
-except ImportError:
- pass
-
-from utils import no_coverage_env
-import pexpect
-import sys
-
-
-def main():
- p = pexpect.spawnu(sys.executable + ' echo_w_prompt.py',
- env=no_coverage_env())
- p.interact()
- print("Escaped interact")
-
-if __name__ == '__main__':
- main()