(self, path1)
| 1422 | assert p2.common(p1) == path1 |
| 1423 | |
| 1424 | def test_commondir_nocommon(self, path1): |
| 1425 | # XXX This is here in local until we find a way to implement this |
| 1426 | # using the subversion command line api. |
| 1427 | p1 = path1.join("something") |
| 1428 | p2 = local(path1.sep + "blabla") |
| 1429 | assert p1.common(p2) == "/" |
| 1430 | |
| 1431 | def test_join_to_root(self, path1): |
| 1432 | root = path1.parts()[0] |