(self, path1)
| 57 | assert path1 == newpath |
| 58 | |
| 59 | def test_add_something(self, path1): |
| 60 | p = path1.join("sample") |
| 61 | p = p + "dir" |
| 62 | assert p.check() |
| 63 | assert p.exists() |
| 64 | assert p.isdir() |
| 65 | assert not p.isfile() |
| 66 | |
| 67 | def test_parts(self, path1): |
| 68 | newpath = path1.join("sampledir", "otherfile") |