(self, alpharep)
| 247 | |
| 248 | @pass_alpharep |
| 249 | def test_joinpath(self, alpharep): |
| 250 | root = zipfile.Path(alpharep) |
| 251 | a = root.joinpath("a.txt") |
| 252 | assert a.is_file() |
| 253 | e = root.joinpath("b").joinpath("d").joinpath("e.txt") |
| 254 | assert e.read_text(encoding="utf-8") == "content of e" |
| 255 | |
| 256 | @pass_alpharep |
| 257 | def test_joinpath_multiple(self, alpharep): |