(self, tmpdir)
| 1350 | assert not linkpath.check(link=0, dir=1) |
| 1351 | |
| 1352 | def test_symlink_remove(self, tmpdir): |
| 1353 | linkpath = tmpdir.join("test") |
| 1354 | linkpath.mksymlinkto(linkpath) # point to itself |
| 1355 | assert linkpath.check(link=1) |
| 1356 | linkpath.remove() |
| 1357 | assert not linkpath.check() |
| 1358 | |
| 1359 | def test_realpath_file(self, tmpdir): |
| 1360 | linkpath = tmpdir.join("test") |
nothing calls this directly
no test coverage detected