(self, tmpdir)
| 1344 | assert list(visitor) == [linkpath] |
| 1345 | |
| 1346 | def test_symlink_isdir(self, tmpdir): |
| 1347 | linkpath = tmpdir.join("test") |
| 1348 | linkpath.mksymlinkto(tmpdir) |
| 1349 | assert linkpath.check(dir=1) |
| 1350 | assert not linkpath.check(link=0, dir=1) |
| 1351 | |
| 1352 | def test_symlink_remove(self, tmpdir): |
| 1353 | linkpath = tmpdir.join("test") |
nothing calls this directly
no test coverage detected