(self, path1)
| 132 | assert path1.join("samplefile").isfile() |
| 133 | |
| 134 | def test_fnmatch_file(self, path1): |
| 135 | assert path1.join("samplefile").check(fnmatch="s*e") |
| 136 | assert path1.join("samplefile").fnmatch("s*e") |
| 137 | assert not path1.join("samplefile").fnmatch("s*x") |
| 138 | assert not path1.join("samplefile").check(fnmatch="s*x") |
| 139 | |
| 140 | # def test_fnmatch_dir(self, path1): |
| 141 |