(self)
| 3086 | |
| 3087 | @needs_posix |
| 3088 | def test_rglob_posix(self): |
| 3089 | P = self.cls |
| 3090 | p = P(self.base, "dirC") |
| 3091 | q = p / "dirD" / "FILEd" |
| 3092 | given = set(p.rglob("FILEd")) |
| 3093 | expect = {q} if q.exists() else set() |
| 3094 | self.assertEqual(given, expect) |
| 3095 | self.assertEqual(set(p.rglob("FILEd*")), set()) |
| 3096 | |
| 3097 | @needs_windows |
| 3098 | def test_rglob_windows(self): |
nothing calls this directly
no test coverage detected