(self)
| 2814 | |
| 2815 | @unittest.skipUnless(os.path.altsep, 'requires os.path.altsep') |
| 2816 | def test_move_dir_altsep_to_dir(self): |
| 2817 | self._check_move_dir(self.src_dir + os.path.altsep, self.dst_dir, |
| 2818 | os.path.join(self.dst_dir, os.path.basename(self.src_dir))) |
| 2819 | |
| 2820 | def test_existing_file_inside_dest_dir(self): |
| 2821 | # A file with the same name inside the destination dir already exists. |
nothing calls this directly
no test coverage detected