(self, alpharep)
| 119 | |
| 120 | @pass_alpharep |
| 121 | def test_iterdir_on_file(self, alpharep): |
| 122 | root = zipfile.Path(alpharep) |
| 123 | a, n, b, g, j = root.iterdir() |
| 124 | with self.assertRaises(ValueError): |
| 125 | a.iterdir() |
| 126 | |
| 127 | @pass_alpharep |
| 128 | def test_subdir_is_dir(self, alpharep): |
nothing calls this directly
no test coverage detected