(tmp_path)
| 15 | |
| 16 | |
| 17 | def _make_kb(tmp_path): |
| 18 | (tmp_path / ".openkb").mkdir() |
| 19 | (tmp_path / ".openkb" / "config.yaml").write_text("model: gpt-4o-mini\n") |
| 20 | (tmp_path / "wiki").mkdir() |
| 21 | (tmp_path / "wiki" / "index.md").write_text("# index\n") |
| 22 | return tmp_path |
| 23 | |
| 24 | |
| 25 | def test_generator_rejects_unknown_target_type(tmp_path): |
no outgoing calls
no test coverage detected