(self, alpharep)
| 547 | |
| 548 | @pass_alpharep |
| 549 | def test_is_symlink(self, alpharep): |
| 550 | root = zipfile.Path(alpharep) |
| 551 | assert not root.joinpath('a.txt').is_symlink() |
| 552 | assert root.joinpath('n.txt').is_symlink() |
| 553 | |
| 554 | @pass_alpharep |
| 555 | def test_relative_to(self, alpharep): |
nothing calls this directly
no test coverage detected