(self, tmp_path, monkeypatch)
| 29 | |
| 30 | class TestFindKbDir: |
| 31 | def test_finds_openkb_dir(self, tmp_path, monkeypatch): |
| 32 | (tmp_path / ".openkb").mkdir() |
| 33 | monkeypatch.chdir(tmp_path) |
| 34 | result = _find_kb_dir() |
| 35 | assert result is not None |
| 36 | |
| 37 | def test_returns_none_if_no_openkb(self, tmp_path, monkeypatch): |
| 38 | monkeypatch.chdir(tmp_path) |
nothing calls this directly
no test coverage detected