(self, tmpdir)
| 1357 | assert not linkpath.check() |
| 1358 | |
| 1359 | def test_realpath_file(self, tmpdir): |
| 1360 | linkpath = tmpdir.join("test") |
| 1361 | filepath = tmpdir.join("file") |
| 1362 | filepath.write_text("", encoding="utf-8") |
| 1363 | linkpath.mksymlinkto(filepath) |
| 1364 | realpath = linkpath.realpath() |
| 1365 | assert realpath.basename == "file" |
| 1366 | |
| 1367 | def test_owner(self, path1, tmpdir): |
| 1368 | from grp import getgrgid # type:ignore[attr-defined,unused-ignore] |
nothing calls this directly
no test coverage detected