(self, tmpfile: BinaryIO)
| 1058 | self.test_simple_many(tmpfile) |
| 1059 | |
| 1060 | def test_simple_fail_second_start(self, tmpfile: BinaryIO) -> None: |
| 1061 | fd = tmpfile.fileno() |
| 1062 | cap = capture.FDCapture(fd) |
| 1063 | cap.done() |
| 1064 | with pytest.raises(AssertionError): |
| 1065 | cap.start() |
| 1066 | |
| 1067 | def test_stderr(self) -> None: |
| 1068 | cap = capture.FDCapture(2) |