(self)
| 70 | shutil.copyfile(self.source_path, self.source_path3) |
| 71 | |
| 72 | def add_bad_source_file(self): |
| 73 | self.bad_source_path = os.path.join(self.directory, '_test_bad.py') |
| 74 | with open(self.bad_source_path, 'w', encoding="utf-8") as file: |
| 75 | file.write('x (\n') |
| 76 | |
| 77 | def timestamp_metadata(self): |
| 78 | with open(self.bc_path, 'rb') as file: |
no test coverage detected