(self)
| 2762 | self._check_move_file(self.src_file, self.dst_file, self.dst_file) |
| 2763 | |
| 2764 | def test_move_file_to_dir(self): |
| 2765 | # Move a file inside an existing dir on the same filesystem. |
| 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. |
no test coverage detected