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