MCPcopy Index your code
hub / github.com/python/cpython / test_rglob_windows

Method test_rglob_windows

Lib/test/test_pathlib/test_pathlib.py:3098–3102  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3096
3097 @needs_windows
3098 def test_rglob_windows(self):
3099 P = self.cls
3100 p = P(self.base, "dirC")
3101 self.assertEqual(set(p.rglob("FILEd")), { P(self.base, "dirC/dirD/fileD") })
3102 self.assertEqual(set(p.rglob("*\\")), { P(self.base, "dirC/dirD/") })
3103
3104 @needs_symlinks
3105 def test_rglob_symlink_loop(self):

Callers

nothing calls this directly

Calls 4

setFunction · 0.85
PClass · 0.70
assertEqualMethod · 0.45
rglobMethod · 0.45

Tested by

no test coverage detected