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