(self)
| 3095 | |
| 3096 | @needs_posix |
| 3097 | def test_rglob_posix(self): |
| 3098 | P = self.cls |
| 3099 | p = P(self.base, "dirC") |
| 3100 | q = p / "dirD" / "FILEd" |
| 3101 | given = set(p.rglob("FILEd")) |
| 3102 | expect = {q} if q.exists() else set() |
| 3103 | self.assertEqual(given, expect) |
| 3104 | self.assertEqual(set(p.rglob("FILEd*")), set()) |
| 3105 | |
| 3106 | @needs_windows |
| 3107 | def test_rglob_windows(self): |
nothing calls this directly
no test coverage detected