(self, path1)
| 178 | path1.join("samplefile").listdir() |
| 179 | |
| 180 | def test_listdir_fnmatchstring(self, path1): |
| 181 | p = path1.listdir("s*dir") |
| 182 | assert len(p) |
| 183 | assert p[0], path1.join("sampledir") |
| 184 | |
| 185 | def test_listdir_filter(self, path1): |
| 186 | p = path1.listdir(lambda x: x.check(dir=1)) |