8 lines
337 B
Python
8 lines
337 B
Python
from govoplan_campaign.backend.manifest import get_manifest
|
|
|
|
|
|
def test_static_documentation_has_complete_german_reference_copy() -> None:
|
|
for topic in get_manifest().documentation:
|
|
german = topic.translations.get("de", {})
|
|
assert all(german.get(field, "").strip() for field in ("title", "summary", "body")), topic.id
|