(self)
| 3085 | |
| 3086 | @contextlib.contextmanager |
| 3087 | def get_files(self): |
| 3088 | with open(TESTFN, "rb") as src: |
| 3089 | with open(TESTFN2, "wb") as dst: |
| 3090 | yield (src, dst) |
| 3091 | |
| 3092 | def assert_files_eq(self, src, dst): |
| 3093 | with open(src, 'rb') as fsrc: |
no test coverage detected