(self)
| 2976 | self.assertEqual(set(p.glob('*')), set()) |
| 2977 | |
| 2978 | def test_rglob_pathlike(self): |
| 2979 | P = self.cls |
| 2980 | p = P(self.base, "dirC") |
| 2981 | pattern = "**/file*" |
| 2982 | expect = {p / "fileC", p / "dirD/fileD"} |
| 2983 | self.assertEqual(expect, set(p.rglob(P(pattern)))) |
| 2984 | self.assertEqual(expect, set(p.rglob(FakePath(pattern)))) |
| 2985 | |
| 2986 | @needs_symlinks |
| 2987 | def test_glob_recurse_symlinks_common(self): |
nothing calls this directly
no test coverage detected