(self, path1)
| 112 | assert newbase.dirpath() == newpath.dirpath() |
| 113 | |
| 114 | def test_not_exists(self, path1): |
| 115 | assert not path1.join("does_not_exist").check() |
| 116 | assert path1.join("does_not_exist").check(exists=0) |
| 117 | |
| 118 | def test_exists(self, path1): |
| 119 | assert path1.join("samplefile").check() |