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

Method test_glob_broken_symlinks

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

Source from the content-addressed store, hash-verified

222
223 @skip_unless_symlink
224 def test_glob_broken_symlinks(self):
225 eq = self.assertSequencesEqual_noorder
226 eq(self.glob('sym*'), [self.norm('sym1'), self.norm('sym2'),
227 self.norm('sym3')])
228 eq(self.glob('sym1'), [self.norm('sym1')])
229 eq(self.glob('sym2'), [self.norm('sym2')])
230
231 @unittest.skipUnless(sys.platform == "win32", "Win32 specific test")
232 def test_glob_magic_in_drive(self):

Callers

nothing calls this directly

Calls 3

globMethod · 0.95
normMethod · 0.95
eqFunction · 0.85

Tested by

no test coverage detected