(self)
| 2967 | self.assertEqual(set(p.glob('*')), set()) |
| 2968 | |
| 2969 | def test_rglob_pathlike(self): |
| 2970 | P = self.cls |
| 2971 | p = P(self.base, "dirC") |
| 2972 | pattern = "**/file*" |
| 2973 | expect = {p / "fileC", p / "dirD/fileD"} |
| 2974 | self.assertEqual(expect, set(p.rglob(P(pattern)))) |
| 2975 | self.assertEqual(expect, set(p.rglob(FakePath(pattern)))) |
| 2976 | |
| 2977 | @needs_symlinks |
| 2978 | def test_glob_recurse_symlinks_common(self): |
nothing calls this directly
no test coverage detected