summaryrefslogtreecommitdiff
path: root/tests/test_stanza_xep_0060.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-02-19 19:06:41 +0100
committermathieui <mathieui@mathieui.net>2021-02-19 19:06:41 +0100
commit2ba89727a6627f86e66ec4f3baba464da1b0b19c (patch)
treed18c9e4bccc85d3c5770515966ce9866f8bc39dc /tests/test_stanza_xep_0060.py
parent626bf5ff8ac5bc4c8758cd437e52f4e7c86ec179 (diff)
parenta397cc3a7d824d7c5bdfbe316b78deb17e190ecd (diff)
downloadslixmpp-2ba89727a6627f86e66ec4f3baba464da1b0b19c.tar.gz
slixmpp-2ba89727a6627f86e66ec4f3baba464da1b0b19c.tar.bz2
slixmpp-2ba89727a6627f86e66ec4f3baba464da1b0b19c.tar.xz
slixmpp-2ba89727a6627f86e66ec4f3baba464da1b0b19c.zip
Merge branch 'fix-test-order-race' into 'master'
tests: fix prerequisites for stanza tests See merge request poezio/slixmpp!134
Diffstat (limited to 'tests/test_stanza_xep_0060.py')
-rw-r--r--tests/test_stanza_xep_0060.py9
1 files changed, 9 insertions, 0 deletions
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()