From a397cc3a7d824d7c5bdfbe316b78deb17e190ecd Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 19 Feb 2021 18:51:50 +0100 Subject: tests: fix prerequisites for stanza tests --- tests/test_stanza_xep_0060.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tests/test_stanza_xep_0060.py') diff --git a/tests/test_stanza_xep_0060.py b/tests/test_stanza_xep_0060.py index 2a5f7d84..d05bc3d0 100644 --- a/tests/test_stanza_xep_0060.py +++ b/tests/test_stanza_xep_0060.py @@ -3,10 +3,19 @@ from slixmpp.test import SlixTest import slixmpp.plugins.xep_0004 as xep_0004 import slixmpp.plugins.xep_0060.stanza as pubsub from slixmpp.xmlstream.stanzabase import ET +from slixmpp.xmlstream import register_stanza_plugin class TestPubsubStanzas(SlixTest): + def setUp(self): + register_stanza_plugin( + xep_0004.FormField, xep_0004.FieldOption, iterable=True + ) + register_stanza_plugin( + xep_0004.Form, xep_0004.FormField, iterable=True + ) + def testAffiliations(self): "Testing iq/pubsub/affiliations/affiliation stanzas" iq = self.Iq() -- cgit v1.2.3