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

Method test_hidden_glob

Lib/test/test_glob.py:272–278  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

270 return self.glob(*parts, include_hidden=True, **kwargs)
271
272 def test_hidden_glob(self):
273 eq = self.assertSequencesEqual_noorder
274 l = [('aaa',), ('.aa',)]
275 eq(self.hglob('?aa'), self.joins(*l))
276 eq(self.hglob('*aa'), self.joins(*l))
277 l2 = [('.aa','G',)]
278 eq(self.hglob('**', 'G'), self.joins(*l2))
279
280 def test_recursive_glob(self):
281 eq = self.assertSequencesEqual_noorder

Callers

nothing calls this directly

Calls 3

hglobMethod · 0.95
joinsMethod · 0.95
eqFunction · 0.85

Tested by

no test coverage detected