mcp
This commit is contained in:
13
scripts/mcp-server/tests/test_docs_sync.py
Normal file
13
scripts/mcp-server/tests/test_docs_sync.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""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)
|
||||
Reference in New Issue
Block a user