(self)
| 2760 | self.test_move_file_to_dir() |
| 2761 | |
| 2762 | def test_move_dir(self): |
| 2763 | # Move a dir to another location on the same filesystem. |
| 2764 | dst_dir = tempfile.mktemp(dir=self.mkdtemp()) |
| 2765 | try: |
| 2766 | self._check_move_dir(self.src_dir, dst_dir, dst_dir) |
| 2767 | finally: |
| 2768 | os_helper.rmtree(dst_dir) |
| 2769 | |
| 2770 | @mock_rename |
| 2771 | def test_move_dir_other_fs(self): |
no test coverage detected