(self)
| 100 | self.assertRaises(OSError, p.iterdir) |
| 101 | |
| 102 | def test_iterdir_info(self): |
| 103 | for child in self.root.iterdir(): |
| 104 | self.assertIsInstance(child.info, PathInfo) |
| 105 | self.assertTrue(child.info.exists(follow_symlinks=False)) |
| 106 | |
| 107 | def test_glob(self): |
| 108 | if not self.ground.can_symlink: |
nothing calls this directly
no test coverage detected