(self, tmpfile: BinaryIO)
| 969 | assert s == "hello" |
| 970 | |
| 971 | def test_simple_many(self, tmpfile: BinaryIO) -> None: |
| 972 | for i in range(10): |
| 973 | self.test_simple(tmpfile) |
| 974 | |
| 975 | def test_simple_many_check_open_files(self, pytester: Pytester) -> None: |
| 976 | with lsof_check(): |
no test coverage detected