(self)
| 2085 | self.assertFileNotFound(p.unlink) |
| 2086 | |
| 2087 | def test_unlink_missing_ok(self): |
| 2088 | p = self.cls(self.base) / 'fileAAA' |
| 2089 | self.assertFileNotFound(p.unlink) |
| 2090 | p.unlink(missing_ok=True) |
| 2091 | |
| 2092 | def test_rmdir(self): |
| 2093 | p = self.cls(self.base) / 'dirA' |
nothing calls this directly
no test coverage detected