(self, alpharep)
| 481 | |
| 482 | @pass_alpharep |
| 483 | def test_glob_recursive(self, alpharep): |
| 484 | root = zipfile.Path(alpharep) |
| 485 | files = root.glob("**/*.txt") |
| 486 | assert all(each.match("*.txt") for each in files) |
| 487 | |
| 488 | assert list(root.glob("**/*.txt")) == list(root.rglob("*.txt")) |
| 489 | |
| 490 | @pass_alpharep |
| 491 | def test_glob_dirs(self, alpharep): |