(self, path: Path, *, user: object = None)
| 143 | return self._running |
| 144 | |
| 145 | async def read(self, path: Path, *, user: object = None) -> io.BytesIO: |
| 146 | _ = (path, user) |
| 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) |
no outgoing calls
no test coverage detected