(self)
| 3132 | assert not dst.closed |
| 3133 | |
| 3134 | def test_file_offset(self): |
| 3135 | with self.get_files() as (src, dst): |
| 3136 | shutil.copyfileobj(src, dst) |
| 3137 | self.assertEqual(src.tell(), self.FILESIZE) |
| 3138 | self.assertEqual(dst.tell(), self.FILESIZE) |
| 3139 | |
| 3140 | @unittest.skipIf(os.name != 'nt', "Windows only") |
| 3141 | def test_win_impl(self): |
nothing calls this directly
no test coverage detected