(self)
| 106 | self.assertRaises(OSError, p.iterdir) |
| 107 | |
| 108 | def test_iterdir_info(self): |
| 109 | for child in self.root.iterdir(): |
| 110 | self.assertIsInstance(child.info, PathInfo) |
| 111 | self.assertTrue(child.info.exists(follow_symlinks=False)) |
| 112 | |
| 113 | def test_glob(self): |
| 114 | if not self.ground.can_symlink: |
nothing calls this directly
no test coverage detected