(self, tmp_path, rag_config)
| 91 | assert len(rag._cve_meta) == 3 |
| 92 | |
| 93 | def test_build_missing_db(self, tmp_path, rag_config): |
| 94 | rag = CVERagIndex(rag_config) |
| 95 | result = rag.build(str(tmp_path / "nonexistent.db"), interactive=False) |
| 96 | assert result is False |
| 97 | assert not rag.is_loaded() |
| 98 | |
| 99 | def test_build_empty_db(self, tmp_path, rag_config): |
| 100 | empty_db = tmp_path / "empty.db" |
nothing calls this directly
no test coverage detected