Home | History | Annotate | Download | only in test

Lines Matching refs:dst_file

1390         dst_file = os.path.join(dst_dir, 'bar')
1393 rv = shutil.copyfile(src_file, dst_file)
1395 self.assertEqual(read_file(src_file), read_file(dst_file))
1525 self.dst_file = os.path.join(self.dst_dir, filename)
1553 self._check_move_file(self.src_file, self.dst_file, self.dst_file)
1557 self._check_move_file(self.src_file, self.dst_dir, self.dst_file)
1606 with open(self.dst_file, "wb"):
1644 shutil.move(dst, self.dst_file)
1645 self.assertTrue(os.path.islink(self.dst_file))
1646 self.assertTrue(os.path.samefile(self.src_file, self.dst_file))