(self)
| 9 | class OverwriteTests: |
| 10 | |
| 11 | def setUp(self): |
| 12 | os.makedirs(self.testdir) |
| 13 | self.addCleanup(os_helper.rmtree, self.testdir) |
| 14 | |
| 15 | def create_file(self, path, content=b''): |
| 16 | with open(path, 'wb') as f: |
nothing calls this directly
no test coverage detected