(self, path1)
| 1429 | assert p1.common(p2) == "/" |
| 1430 | |
| 1431 | def test_join_to_root(self, path1): |
| 1432 | root = path1.parts()[0] |
| 1433 | assert len(str(root)) == 1 |
| 1434 | assert str(root.join("a")) == "/a" |
| 1435 | |
| 1436 | def test_join_root_to_root_with_no_abs(self, path1): |
| 1437 | nroot = path1.join("/") |