summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-07-11 16:28:40 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-07-11 16:28:40 (GMT)
commit5a33f813483325ab3e13596814c3eade6e0bb518 (patch)
tree81f815e9ff3830ff8b81757054f47e5956398138 /Lib/test/test_support.py
parentdfde2151ede820873324705403af3176093b5ef5 (diff)
downloadcpython-5a33f813483325ab3e13596814c3eade6e0bb518.zip
cpython-5a33f813483325ab3e13596814c3eade6e0bb518.tar.gz
cpython-5a33f813483325ab3e13596814c3eade6e0bb518.tar.bz2
#17987: properly document support.captured_xxx.
Patch by Dmi Baranov.
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r--Lib/test/test_support.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index f6ef5f6..340b8da 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -130,19 +130,22 @@ class TestSupport(unittest.TestCase):
self.assertNotIn("bar", sys.path)
def test_captured_stdout(self):
- with support.captured_stdout() as s:
+ with support.captured_stdout() as stdout:
print("hello")
- self.assertEqual(s.getvalue(), "hello\n")
+ self.assertEqual(stdout.getvalue(), "hello\n")
def test_captured_stderr(self):
- with support.captured_stderr() as s:
+ with support.captured_stderr() as stderr:
print("hello", file=sys.stderr)
- self.assertEqual(s.getvalue(), "hello\n")
+ self.assertEqual(stderr.getvalue(), "hello\n")
def test_captured_stdin(self):
- with support.captured_stdin() as s:
- print("hello", file=sys.stdin)
- self.assertEqual(s.getvalue(), "hello\n")
+ with support.captured_stdin() as stdin:
+ stdin.write('hello\n')
+ stdin.seek(0)
+ # call test code that consumes from sys.stdin
+ captured = input()
+ self.assertEqual(captured, "hello")
def test_gc_collect(self):
support.gc_collect()