(self, pytester: Pytester)
| 973 | self.test_simple(tmpfile) |
| 974 | |
| 975 | def test_simple_many_check_open_files(self, pytester: Pytester) -> None: |
| 976 | with lsof_check(): |
| 977 | with pytester.makepyfile("").open("wb+") as tmpfile: |
| 978 | self.test_simple_many(tmpfile) |
| 979 | |
| 980 | def test_simple_fail_second_start(self, tmpfile: BinaryIO) -> None: |
| 981 | fd = tmpfile.fileno() |
nothing calls this directly
no test coverage detected