Lines Matching refs:dst_file
1287 dst_file = os.path.join(dst_dir, 'bar')
1290 rv = shutil.copyfile(src_file, dst_file)
1292 self.assertEqual(read_file(src_file), read_file(dst_file))
2003 self.dst_file = os.path.join(self.dst_dir, filename)
2023 self._check_move_file(self.src_file, self.dst_file, self.dst_file)
2027 self._check_move_file(self.src_file, self.dst_dir, self.dst_file)
2032 self._check_move_file(src, self.dst_dir, self.dst_file)
2037 self._check_move_file(self.src_file, dst, self.dst_file)
2083 with open(self.dst_file, "wb"):
2121 shutil.move(dst, self.dst_file)
2122 self.assertTrue(os.path.islink(self.dst_file))
2123 self.assertTrue(os.path.samefile(self.src_file, self.dst_file))