(self, pytester: Pytester)
| 1053 | self.test_simple(tmpfile) |
| 1054 | |
| 1055 | def test_simple_many_check_open_files(self, pytester: Pytester) -> None: |
| 1056 | with lsof_check(): |
| 1057 | with pytester.makepyfile("").open("wb+") as tmpfile: |
| 1058 | self.test_simple_many(tmpfile) |
| 1059 | |
| 1060 | def test_simple_fail_second_start(self, tmpfile: BinaryIO) -> None: |
| 1061 | fd = tmpfile.fileno() |
nothing calls this directly
no test coverage detected