(self, path: Path, *, user: object = None)
| 48 | raise AssertionError("exec() should not be called in this test") |
| 49 | |
| 50 | async def read(self, path: Path, *, user: object = None) -> io.IOBase: |
| 51 | _ = user |
| 52 | return self.normalize_path(path).open("rb") |
| 53 | |
| 54 | async def write(self, path: Path, data: io.IOBase, *, user: object = None) -> None: |
| 55 | _ = user |
nothing calls this directly
no test coverage detected