(self)
| 2745 | self._check_move_file(src, self.dst_dir, self.dst_file) |
| 2746 | |
| 2747 | def test_move_file_to_dir_pathlike_dst(self): |
| 2748 | # Move a file to another pathlike location on the same filesystem. |
| 2749 | dst = FakePath(self.dst_dir) |
| 2750 | self._check_move_file(self.src_file, dst, self.dst_file) |
| 2751 | |
| 2752 | @mock_rename |
| 2753 | def test_move_file_other_fs(self): |
nothing calls this directly
no test coverage detected