(self)
| 492 | |
| 493 | @skip_win32 |
| 494 | def test_target_exists(self): |
| 495 | dst = self.dst("target") |
| 496 | open(dst, "w", encoding="utf-8").close() |
| 497 | path.link_or_copy(self.src, dst) |
| 498 | self.assert_inode_equal(self.src, dst) |
| 499 | |
| 500 | @skip_win32 |
| 501 | def test_no_link(self): |
nothing calls this directly
no test coverage detected