(self)
| 3126 | self.assert_files_eq(TESTFN, TESTFN2) |
| 3127 | |
| 3128 | def test_file_not_closed(self): |
| 3129 | with self.get_files() as (src, dst): |
| 3130 | shutil.copyfileobj(src, dst) |
| 3131 | assert not src.closed |
| 3132 | assert not dst.closed |
| 3133 | |
| 3134 | def test_file_offset(self): |
| 3135 | with self.get_files() as (src, dst): |