From 906d37988336c22242db7e71955b67179f915f7b Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 14 Jul 2023 14:11:29 -0400 Subject: [PATCH] In test_stem, test against a filename that starts with a dot. Ref #96. --- tests/test_zipp.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_zipp.py b/tests/test_zipp.py index eb4b29e..4f8520f 100644 --- a/tests/test_zipp.py +++ b/tests/test_zipp.py @@ -425,6 +425,8 @@ def test_stem(self, alpharep): d = root / "d" assert d.stem == "d" + assert (root / ".gitignore").stem == ".gitignore" + @pass_alpharep def test_root_parent(self, alpharep): root = zipp.Path(alpharep)