(self)
| 483 | self.assert_content_equal(self.src, dst) |
| 484 | |
| 485 | def test_link_twice(self): |
| 486 | # Linking the same file twice shouldn't leave duplicates around. |
| 487 | # See https://github.com/ipython/ipython/issues/6450 |
| 488 | dst = self.dst('target') |
| 489 | path.link_or_copy(self.src, dst) |
| 490 | path.link_or_copy(self.src, dst) |
| 491 | self.assert_inode_equal(self.src, dst) |
| 492 | nt.assert_equal(sorted(os.listdir(self.tempdir.name)), ['src', 'target']) |
nothing calls this directly
no test coverage detected