14 lines
354 B
Python
14 lines
354 B
Python
"""Docs sync tests."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from mcp_server.docs_sync import check_catalog_parity
|
|
|
|
|
|
def test_docs_sync_runs() -> None:
|
|
"""Docs sync returns structured result."""
|
|
result = check_catalog_parity()
|
|
assert "status" in result
|
|
assert "missingInDocs" in result
|
|
assert isinstance(result["missingInDocs"], list)
|