(self, path: str, content: str)
| 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)) |
| 98 | self.text_reads[path] = content |
| 99 | |
| 100 | async def read_text(self, path: str): |
| 101 | return self.text_reads[path] |
no test coverage detected