(self, alpharep)
| 255 | |
| 256 | @pass_alpharep |
| 257 | def test_joinpath_multiple(self, alpharep): |
| 258 | root = zipfile.Path(alpharep) |
| 259 | e = root.joinpath("b", "d", "e.txt") |
| 260 | assert e.read_text(encoding="utf-8") == "content of e" |
| 261 | |
| 262 | @pass_alpharep |
| 263 | def test_traverse_truediv(self, alpharep): |