(self)
| 2758 | self.assertFalse(os.path.exists(src)) |
| 2759 | |
| 2760 | def test_move_file(self): |
| 2761 | # Move a file to another location on the same filesystem. |
| 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. |
no test coverage detected