MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_hidden_glob

Method test_hidden_glob

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

hglobMethod · 0.95
joinsMethod · 0.95
eqFunction · 0.50

Tested by

no test coverage detected