(self)
| 2766 | self._check_move_file(self.src_file, self.dst_dir, self.dst_file) |
| 2767 | |
| 2768 | def test_move_file_to_dir_pathlike_src(self): |
| 2769 | # Move a pathlike file to another location on the same filesystem. |
| 2770 | src = FakePath(self.src_file) |
| 2771 | self._check_move_file(src, self.dst_dir, self.dst_file) |
| 2772 | |
| 2773 | def test_move_file_to_dir_pathlike_dst(self): |
| 2774 | # Move a file to another pathlike location on the same filesystem. |
nothing calls this directly
no test coverage detected