We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f09d15 commit 387dceaCopy full SHA for 387dcea
1 file changed
tests/test_path.py
@@ -515,14 +515,12 @@ def test_eq_hash(self, alpharep):
515
root = zipfile.Path(alpharep)
516
assert root in {root}
517
518
+ @__import__('pytest').mark.xfail(reason="Not implemented")
519
@pass_alpharep
520
def test_is_symlink(self, alpharep):
- """
521
- See python/cpython#82102 for symlink support beyond this object.
522
523
-
524
525
- assert not root.is_symlink()
+ assert not root.joinpath('a.txt').is_symlink()
+ assert root.joinpath('n.txt').is_symlink()
526
527
528
def test_relative_to(self, alpharep):
0 commit comments