diff options
author | Lance Stout <lancestout@gmail.com> | 2011-08-31 10:43:33 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-08-31 10:43:33 -0700 |
commit | 2500a0649ba10c0109a1ed021a051284c104391f (patch) | |
tree | bc7378a2b410a869afaa816701d2fcbd4f7ac160 /tests/test_stanza_xep_0060.py | |
parent | 5ec4e4a026a5f3a3ec9c2cb6efd3dc1a4ccf580f (diff) | |
download | slixmpp-2500a0649ba10c0109a1ed021a051284c104391f.tar.gz slixmpp-2500a0649ba10c0109a1ed021a051284c104391f.tar.bz2 slixmpp-2500a0649ba10c0109a1ed021a051284c104391f.tar.xz slixmpp-2500a0649ba10c0109a1ed021a051284c104391f.zip |
Fix requesting pubsub node configuration, and add tests.
- <default /> doesn't have a type attribute in the XEP
- <configure /> isn't used anymore for requesting default configuration
Diffstat (limited to 'tests/test_stanza_xep_0060.py')
-rw-r--r-- | tests/test_stanza_xep_0060.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_stanza_xep_0060.py b/tests/test_stanza_xep_0060.py index 5d5c843a..34556608 100644 --- a/tests/test_stanza_xep_0060.py +++ b/tests/test_stanza_xep_0060.py @@ -148,14 +148,13 @@ class TestPubsubStanzas(SleekTest): iq = self.Iq() iq['pubsub_owner']['default'] iq['pubsub_owner']['default']['node'] = 'mynode' - iq['pubsub_owner']['default']['type'] = 'leaf' iq['pubsub_owner']['default']['form'].addField('pubsub#title', ftype='text-single', value='This thing is awesome') self.check(iq, """ <iq id="0"> <pubsub xmlns="http://jabber.org/protocol/pubsub#owner"> - <default node="mynode" type="leaf"> + <default node="mynode"> <x xmlns="jabber:x:data" type="form"> <field var="pubsub#title" type="text-single"> <value>This thing is awesome</value> |