(self)
| 3111 | |
| 3112 | @contextlib.contextmanager |
| 3113 | def get_files(self): |
| 3114 | with open(TESTFN, "rb") as src: |
| 3115 | with open(TESTFN2, "wb") as dst: |
| 3116 | yield (src, dst) |
| 3117 | |
| 3118 | def assert_files_eq(self, src, dst): |
| 3119 | with open(src, 'rb') as fsrc: |
no test coverage detected