(self, alpharep)
| 514 | |
| 515 | @pass_alpharep |
| 516 | def test_glob_single_char(self, alpharep): |
| 517 | root = zipfile.Path(alpharep) |
| 518 | |
| 519 | assert list(root.glob("a?txt")) == [zipfile.Path(alpharep, "a.txt")] |
| 520 | assert list(root.glob("a[.]txt")) == [zipfile.Path(alpharep, "a.txt")] |
| 521 | assert list(root.glob("a[?]txt")) == [] |
| 522 | |
| 523 | @pass_alpharep |
| 524 | def test_glob_chars(self, alpharep): |