(self, src, dst, real_dst)
| 2726 | self.assertFalse(os.path.exists(src)) |
| 2727 | |
| 2728 | def _check_move_dir(self, src, dst, real_dst): |
| 2729 | contents = sorted(os.listdir(src)) |
| 2730 | shutil.move(src, dst) |
| 2731 | self.assertEqual(contents, sorted(os.listdir(real_dst))) |
| 2732 | self.assertFalse(os.path.exists(src)) |
| 2733 | |
| 2734 | def test_move_file(self): |
| 2735 | # Move a file to another location on the same filesystem. |
no test coverage detected