(self)
| 1922 | self.assertIn(b'FLUFL', cp.stderr) |
| 1923 | |
| 1924 | def test_stdout_stdout(self): |
| 1925 | # run() refuses to accept stdout=STDOUT |
| 1926 | with self.assertRaises(ValueError, |
| 1927 | msg=("STDOUT can only be used for stderr")): |
| 1928 | self.run_python("print('will not be run')", |
| 1929 | stdout=subprocess.STDOUT) |
| 1930 | |
| 1931 | def test_stdout_with_capture_output_arg(self): |
| 1932 | # run() refuses to accept 'stdout' with 'capture_output' |
nothing calls this directly
no test coverage detected