MCPcopy Create free account
hub / github.com/VectifyAI/OpenKB / test_no_missing_entries

Method test_no_missing_entries

tests/test_lint.py:142–151  ·  view source on GitHub ↗
(self, tmp_path)

Source from the content-addressed store, hash-verified

140
141class TestFindMissingEntries:
142 def test_no_missing_entries(self, tmp_path):
143 wiki = _make_wiki(tmp_path)
144 raw = tmp_path / "raw"
145 raw.mkdir()
146 (raw / "paper.pdf").write_bytes(b"PDF content")
147 (wiki / "sources" / "paper.md").write_text("# Paper")
148
149 result = find_missing_entries(raw, wiki)
150
151 assert result == []
152
153 def test_detects_missing_entry(self, tmp_path):
154 wiki = _make_wiki(tmp_path)

Callers

nothing calls this directly

Calls 2

find_missing_entriesFunction · 0.90
_make_wikiFunction · 0.70

Tested by

no test coverage detected