(tmpdir)
| 14 | |
| 15 | |
| 16 | def test_ensure_existing_dir(tmpdir): |
| 17 | rcfile = str(tmpdir.mkdir("subdir").join("rcfile")) |
| 18 | |
| 19 | # should just not raise |
| 20 | ensure_dir_exists(rcfile) |
| 21 | |
| 22 | |
| 23 | def test_ensure_other_create_error(tmpdir): |
nothing calls this directly
no test coverage detected