Lines Matching refs:_check
1612 def _check(glob, expected): function
1618 _check(it, ["fileA"])
1619 _check(p.glob("fileB"), [])
1620 _check(p.glob("dir*/file*"), ["dirB/fileB", "dirC/fileC"])
1622 _check(p.glob("*A"), ['dirA', 'fileA'])
1624 _check(p.glob("*A"), ['dirA', 'fileA', 'linkA'])
1626 _check(p.glob("*B/*"), ['dirB/fileB'])
1628 _check(p.glob("*B/*"), ['dirB/fileB', 'dirB/linkD',
1631 _check(p.glob("*/fileB"), ['dirB/fileB'])
1633 _check(p.glob("*/fileB"), ['dirB/fileB', 'linkB/fileB'])
1636 def _check(glob, expected): function
1642 _check(it, ["fileA"])
1643 _check(p.rglob("fileB"), ["dirB/fileB"])
1644 _check(p.rglob("*/fileA"), [])
1646 _check(p.rglob("*/fileB"), ["dirB/fileB"])
1648 _check(p.rglob("*/fileB"), ["dirB/fileB", "dirB/linkD/fileB",
1650 _check(p.rglob("file*"), ["fileA", "dirB/fileB",
1653 _check(p.rglob("file*"), ["dirC/fileC", "dirC/dirD/fileD"])
1654 _check(p.rglob("*/*"), ["dirC/dirD/fileD"])