(self, path1)
| 165 | assert curdir.bestrelpath("hello") == "hello" |
| 166 | |
| 167 | def test_relto_not_relative(self, path1): |
| 168 | l1 = path1.join("bcde") |
| 169 | l2 = path1.join("b") |
| 170 | assert not l1.relto(l2) |
| 171 | assert not l2.relto(l1) |
| 172 | |
| 173 | def test_listdir(self, path1): |
| 174 | p = path1.listdir() |