(self, tmpfile: BinaryIO)
| 1049 | assert s == "hello" |
| 1050 | |
| 1051 | def test_simple_many(self, tmpfile: BinaryIO) -> None: |
| 1052 | for i in range(10): |
| 1053 | self.test_simple(tmpfile) |
| 1054 | |
| 1055 | def test_simple_many_check_open_files(self, pytester: Pytester) -> None: |
| 1056 | with lsof_check(): |
no test coverage detected