(self, tmpfile: BinaryIO)
| 978 | self.test_simple_many(tmpfile) |
| 979 | |
| 980 | def test_simple_fail_second_start(self, tmpfile: BinaryIO) -> None: |
| 981 | fd = tmpfile.fileno() |
| 982 | cap = capture.FDCapture(fd) |
| 983 | cap.done() |
| 984 | pytest.raises(AssertionError, cap.start) |
| 985 | |
| 986 | def test_stderr(self) -> None: |
| 987 | cap = capture.FDCapture(2) |