| 1234567891011121314151617 |
- from hermes_mcp.store import init_db, table_counts
- def test_schema_tables_exist():
- init_db()
- counts = table_counts()
- assert set(counts) == {
- "concerns",
- "cycles",
- "observations",
- "states",
- "narratives",
- "decisions",
- "actions",
- "coverage_gaps",
- "regime_samples",
- }
|