(self)
| 530 | ] |
| 531 | |
| 532 | def test_glob_empty(self): |
| 533 | root = zipfile.Path(zipfile.ZipFile(io.BytesIO(), 'w')) |
| 534 | with self.assertRaises(ValueError): |
| 535 | root.glob('') |
| 536 | |
| 537 | @pass_alpharep |
| 538 | def test_eq_hash(self, alpharep): |
nothing calls this directly
no test coverage detected