(*path_text_pairs)
| 347 | |
| 348 | |
| 349 | def write_files(*path_text_pairs): |
| 350 | for path, text in path_text_pairs: |
| 351 | path.parent.mkdir(parents=True, exist_ok=True) |
| 352 | path.write_text(inspect.cleandoc(text), "utf-8") |
| 353 | |
| 354 | |
| 355 | @pytest.fixture |
no test coverage detected