(self, src, dst, real_dst)
| 2752 | self.assertFalse(os.path.exists(src)) |
| 2753 | |
| 2754 | def _check_move_dir(self, src, dst, real_dst): |
| 2755 | contents = sorted(os.listdir(src)) |
| 2756 | shutil.move(src, dst) |
| 2757 | self.assertEqual(contents, sorted(os.listdir(real_dst))) |
| 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. |
no test coverage detected