(self)
| 459 | |
| 460 | @skip_win32 |
| 461 | def test_target_exists(self): |
| 462 | dst = self.dst("target") |
| 463 | open(dst, "w").close() |
| 464 | path.link_or_copy(self.src, dst) |
| 465 | self.assert_inode_equal(self.src, dst) |
| 466 | |
| 467 | @skip_win32 |
| 468 | def test_no_link(self): |
nothing calls this directly
no test coverage detected