(self)
| 1826 | self.assertIn(b'BDFL', cp.stdout) |
| 1827 | |
| 1828 | def test_capture_stderr(self): |
| 1829 | cp = self.run_python("import sys; sys.stderr.write('BDFL')", |
| 1830 | stderr=subprocess.PIPE) |
| 1831 | self.assertIn(b'BDFL', cp.stderr) |
| 1832 | |
| 1833 | def test_check_output_stdin_arg(self): |
| 1834 | # run() can be called with stdin set to a file |
nothing calls this directly
no test coverage detected