(self, path1)
| 102 | assert newpath.dirpath() == path1 |
| 103 | |
| 104 | def test_dirpath_with_args(self, path1): |
| 105 | newpath = path1.join("sampledir") |
| 106 | assert newpath.dirpath("x") == path1.join("x") |
| 107 | |
| 108 | def test_newbasename(self, path1): |
| 109 | newpath = path1.join("samplefile") |