(self, path, content=b'')
| 13 | self.addCleanup(os_helper.rmtree, self.testdir) |
| 14 | |
| 15 | def create_file(self, path, content=b''): |
| 16 | with open(path, 'wb') as f: |
| 17 | f.write(content) |
| 18 | |
| 19 | def open(self, path): |
| 20 | raise NotImplementedError |
no test coverage detected