(self, alpharep)
| 495 | |
| 496 | @pass_alpharep |
| 497 | def test_glob_subdir(self, alpharep): |
| 498 | root = zipfile.Path(alpharep) |
| 499 | assert list(root.glob('g/h')) == [zipfile.Path(alpharep, "g/h/")] |
| 500 | assert list(root.glob('g*/h*')) == [zipfile.Path(alpharep, "g/h/")] |
| 501 | |
| 502 | @pass_alpharep |
| 503 | def test_glob_subdirs(self, alpharep): |