(self, path: Path, data: io.IOBase, *, user: object = None)
| 147 | raise AssertionError("read() should not be called in these tests") |
| 148 | |
| 149 | async def write(self, path: Path, data: io.IOBase, *, user: object = None) -> None: |
| 150 | _ = (path, data, user) |
| 151 | raise AssertionError("write() should not be called in these tests") |
| 152 | |
| 153 | async def _exec_internal( |
| 154 | self, |
no outgoing calls
no test coverage detected