(self)
| 2786 | self.test_move_file_to_dir() |
| 2787 | |
| 2788 | def test_move_dir(self): |
| 2789 | # Move a dir to another location on the same filesystem. |
| 2790 | dst_dir = tempfile.mktemp(dir=self.mkdtemp()) |
| 2791 | try: |
| 2792 | self._check_move_dir(self.src_dir, dst_dir, dst_dir) |
| 2793 | finally: |
| 2794 | os_helper.rmtree(dst_dir) |
| 2795 | |
| 2796 | @mock_rename |
| 2797 | def test_move_dir_other_fs(self): |
no test coverage detected