(self, path1)
| 116 | assert path1.join("does_not_exist").check(exists=0) |
| 117 | |
| 118 | def test_exists(self, path1): |
| 119 | assert path1.join("samplefile").check() |
| 120 | assert path1.join("samplefile").check(exists=1) |
| 121 | assert path1.join("samplefile").exists() |
| 122 | assert path1.join("samplefile").isfile() |
| 123 | assert not path1.join("samplefile").isdir() |
| 124 | |
| 125 | def test_dir(self, path1): |
| 126 | # print repr(path1.join("sampledir")) |