(self, path: str, content: bytes)
| 91 | self.uploads.append((local_path, remote_path)) |
| 92 | |
| 93 | async def write_bytes(self, path: str, content: bytes): |
| 94 | self.byte_writes.append((path, content)) |
| 95 | |
| 96 | async def write_text(self, path: str, content: str): |
| 97 | self.text_writes.append((path, content)) |
no test coverage detected