(self)
| 2099 | p.unlink(missing_ok=True) |
| 2100 | |
| 2101 | def test_rmdir(self): |
| 2102 | p = self.cls(self.base) / 'dirA' |
| 2103 | for q in p.iterdir(): |
| 2104 | q.unlink() |
| 2105 | p.rmdir() |
| 2106 | self.assertFileNotFound(p.stat) |
| 2107 | self.assertFileNotFound(p.unlink) |
| 2108 | |
| 2109 | def test_delete_file(self): |
| 2110 | p = self.cls(self.base) / 'fileA' |
nothing calls this directly
no test coverage detected