docs: localize poll guidance
Module Package Release / publish-packages (push) Successful in 10s

This commit is contained in:
2026-08-22 08:27:57 +02:00
parent 02ec5423b9
commit bf25e88f77
4 changed files with 47 additions and 4 deletions
+8 -1
View File
@@ -25,9 +25,16 @@ class PollManifestTests(unittest.TestCase):
self.assertIn("poll.signed_participation", {interface.name for interface in manifest.provides_interfaces})
self.assertIn("poll.governed_participation", {interface.name for interface in manifest.provides_interfaces})
self.assertIn(CAPABILITY_POLL_PARTICIPATION_GATEWAY, manifest.capability_factories)
self.assertEqual(manifest.version, "0.1.18")
self.assertEqual(manifest.version, "0.1.19")
self.assertIn("poll:response:write", {permission.scope for permission in manifest.permissions})
for topic in manifest.documentation:
german = topic.translations.get("de", {})
self.assertTrue(
all(german.get(field) for field in ("title", "summary", "body")),
topic.id,
)
if __name__ == "__main__":
unittest.main()