diff options
Diffstat (limited to 'tests/test_stanza_xep_0060.py')
-rw-r--r-- | tests/test_stanza_xep_0060.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_stanza_xep_0060.py b/tests/test_stanza_xep_0060.py index 2427b787..5d5c843a 100644 --- a/tests/test_stanza_xep_0060.py +++ b/tests/test_stanza_xep_0060.py @@ -213,6 +213,9 @@ class TestPubsubStanzas(SleekTest): item2['payload'] = payload2 iq['pubsub']['publish'].append(item) iq['pubsub']['publish'].append(item2) + form = xep_0004.Form() + form.addField('pubsub#description', ftype='text-single', value='this thing is awesome') + iq['pubsub']['publish_options'] = form self.check(iq, """ <iq id="0"> @@ -231,6 +234,13 @@ class TestPubsubStanzas(SleekTest): </thinger2> </item> </publish> + <publish-options> + <x xmlns="jabber:x:data" type="submit"> + <field var="pubsub#description"> + <value>this thing is awesome</value> + </field> + </x> + </publish-options> </pubsub> </iq>""") |