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

Method test_glob_broken_symlinks

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

globMethod · 0.95
normMethod · 0.95
eqFunction · 0.50

Tested by

no test coverage detected