(self, path1)
| 351 | pytest.fail("huh") |
| 352 | |
| 353 | def test_visit_sort(self, path1): |
| 354 | lst = [] |
| 355 | for i in path1.visit(bf=True, sort=True): |
| 356 | lst.append(i.relto(path1)) |
| 357 | for i, p in enumerate(lst): |
| 358 | if path1.sep in p: |
| 359 | break |
| 360 | assert lst[:i] == sorted(lst[:i]) |
| 361 | assert lst[i:] == sorted(lst[i:]) |
| 362 | |
| 363 | def test_endswith(self, path1): |
| 364 | def chk(p): |