(self)
| 516 | self.assert_content_equal(self.src, dst) |
| 517 | |
| 518 | def test_link_twice(self): |
| 519 | # Linking the same file twice shouldn't leave duplicates around. |
| 520 | # See https://github.com/ipython/ipython/issues/6450 |
| 521 | dst = self.dst("target") |
| 522 | path.link_or_copy(self.src, dst) |
| 523 | path.link_or_copy(self.src, dst) |
| 524 | self.assert_inode_equal(self.src, dst) |
| 525 | assert sorted(os.listdir(self.tempdir.name)) == ["src", "target"] |
nothing calls this directly
no test coverage detected