(self)
| 2783 | self.test_move_dir_to_dir() |
| 2784 | |
| 2785 | def test_move_dir_sep_to_dir(self): |
| 2786 | self._check_move_dir(self.src_dir + os.path.sep, self.dst_dir, |
| 2787 | os.path.join(self.dst_dir, os.path.basename(self.src_dir))) |
| 2788 | |
| 2789 | @unittest.skipUnless(os.path.altsep, 'requires os.path.altsep') |
| 2790 | def test_move_dir_altsep_to_dir(self): |
nothing calls this directly
no test coverage detected