(self)
| 3100 | self.assert_files_eq(TESTFN, TESTFN2) |
| 3101 | |
| 3102 | def test_file_not_closed(self): |
| 3103 | with self.get_files() as (src, dst): |
| 3104 | shutil.copyfileobj(src, dst) |
| 3105 | assert not src.closed |
| 3106 | assert not dst.closed |
| 3107 | |
| 3108 | def test_file_offset(self): |
| 3109 | with self.get_files() as (src, dst): |