(self)
| 3106 | assert not dst.closed |
| 3107 | |
| 3108 | def test_file_offset(self): |
| 3109 | with self.get_files() as (src, dst): |
| 3110 | shutil.copyfileobj(src, dst) |
| 3111 | self.assertEqual(src.tell(), self.FILESIZE) |
| 3112 | self.assertEqual(dst.tell(), self.FILESIZE) |
| 3113 | |
| 3114 | @unittest.skipIf(os.name != 'nt', "Windows only") |
| 3115 | def test_win_impl(self): |
nothing calls this directly
no test coverage detected