(self)
| 2090 | p.unlink(missing_ok=True) |
| 2091 | |
| 2092 | def test_rmdir(self): |
| 2093 | p = self.cls(self.base) / 'dirA' |
| 2094 | for q in p.iterdir(): |
| 2095 | q.unlink() |
| 2096 | p.rmdir() |
| 2097 | self.assertFileNotFound(p.stat) |
| 2098 | self.assertFileNotFound(p.unlink) |
| 2099 | |
| 2100 | def test_delete_file(self): |
| 2101 | p = self.cls(self.base) / 'fileA' |
nothing calls this directly
no test coverage detected