(self, path1)
| 410 | assert not p.check() |
| 411 | |
| 412 | def test_ensure_dir(self, path1): |
| 413 | b = path1.ensure_dir("001", "002") |
| 414 | assert b.basename == "002" |
| 415 | assert b.isdir() |
| 416 | |
| 417 | def test_mkdir_and_remove(self, path1): |
| 418 | tmpdir = path1 |
nothing calls this directly
no test coverage detected