MCPcopy Index your code
hub / github.com/python/cpython / test_move_file_to_dir_pathlike_dst

Method test_move_file_to_dir_pathlike_dst

Lib/test/test_shutil.py:2773–2776  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2771 self._check_move_file(src, self.dst_dir, self.dst_file)
2772
2773 def test_move_file_to_dir_pathlike_dst(self):
2774 # Move a file to another pathlike location on the same filesystem.
2775 dst = FakePath(self.dst_dir)
2776 self._check_move_file(self.src_file, dst, self.dst_file)
2777
2778 @mock_rename
2779 def test_move_file_other_fs(self):

Callers

nothing calls this directly

Calls 2

_check_move_fileMethod · 0.95
FakePathClass · 0.90

Tested by

no test coverage detected