|
from idea36_catopt_play_category import contracts
|
|
|
|
|
|
def test_export_schemas_contains_models():
|
|
schemas = contracts.export_json_schemas()
|
|
expected = ["LocalProblem", "PlanDelta", "AuditLog"]
|
|
for name in expected:
|
|
assert name in schemas
|
|
assert isinstance(schemas[name], dict)
|