Lines Matching refs:_check
1405 def _check(glob, expected): function
1411 _check(it, ["fileA"])
1412 _check(p.glob("fileB"), [])
1413 _check(p.glob("dir*/file*"), ["dirB/fileB", "dirC/fileC"])
1415 _check(p.glob("*A"), ['dirA', 'fileA'])
1417 _check(p.glob("*A"), ['dirA', 'fileA', 'linkA'])
1419 _check(p.glob("*B/*"), ['dirB/fileB'])
1421 _check(p.glob("*B/*"), ['dirB/fileB', 'dirB/linkD',
1424 _check(p.glob("*/fileB"), ['dirB/fileB'])
1426 _check(p.glob("*/fileB"), ['dirB/fileB', 'linkB/fileB'])
1429 def _check(glob, expected): function
1435 _check(it, ["fileA"])
1436 _check(p.rglob("fileB"), ["dirB/fileB"])
1437 _check(p.rglob("*/fileA"), [])
1439 _check(p.rglob("*/fileB"), ["dirB/fileB"])
1441 _check(p.rglob("*/fileB"), ["dirB/fileB", "dirB/linkD/fileB",
1443 _check(p.rglob("file*"), ["fileA", "dirB/fileB",
1446 _check(p.rglob("file*"), ["dirC/fileC", "dirC/dirD/fileD"])
1447 _check(p.rglob("*/*"), ["dirC/dirD/fileD"])