diff options
author | Lance Stout <lancestout@gmail.com> | 2010-10-07 09:22:27 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-10-07 09:22:27 -0400 |
commit | 75a051556f2cf65f75534102a7fe57a52571494a (patch) | |
tree | 7b0205c55b16bde132eb9d7443bb9c56f1dde5da /tests/test_disco.py | |
parent | 78141fe5f3d3e8267b6969690b93dd7aba41cf65 (diff) | |
download | slixmpp-75a051556f2cf65f75534102a7fe57a52571494a.tar.gz slixmpp-75a051556f2cf65f75534102a7fe57a52571494a.tar.bz2 slixmpp-75a051556f2cf65f75534102a7fe57a52571494a.tar.xz slixmpp-75a051556f2cf65f75534102a7fe57a52571494a.zip |
Changed SleekTest to use underscored names.
Diffstat (limited to 'tests/test_disco.py')
-rw-r--r-- | tests/test_disco.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/test_disco.py b/tests/test_disco.py index 2cc50ee0..f65fdaf4 100644 --- a/tests/test_disco.py +++ b/tests/test_disco.py @@ -14,7 +14,7 @@ class TestDisco(SleekTest): iq['id'] = "0" iq['disco_info']['node'] = '' - self.checkIq(iq, """ + self.check_iq(iq, """ <iq id="0"> <query xmlns="http://jabber.org/protocol/disco#info" /> </iq> @@ -26,7 +26,7 @@ class TestDisco(SleekTest): iq['id'] = "0" iq['disco_info']['node'] = 'foo' - self.checkIq(iq, """ + self.check_iq(iq, """ <iq id="0"> <query xmlns="http://jabber.org/protocol/disco#info" node="foo" /> </iq> @@ -38,7 +38,7 @@ class TestDisco(SleekTest): iq['id'] = "0" iq['disco_items']['node'] = '' - self.checkIq(iq, """ + self.check_iq(iq, """ <iq id="0"> <query xmlns="http://jabber.org/protocol/disco#items" /> </iq> @@ -50,7 +50,7 @@ class TestDisco(SleekTest): iq['id'] = "0" iq['disco_items']['node'] = 'foo' - self.checkIq(iq, """ + self.check_iq(iq, """ <iq id="0"> <query xmlns="http://jabber.org/protocol/disco#items" node="foo" /> </iq> @@ -63,7 +63,7 @@ class TestDisco(SleekTest): iq['disco_info']['node'] = 'foo' iq['disco_info'].addIdentity('conference', 'text', 'Chatroom') - self.checkIq(iq, """ + self.check_iq(iq, """ <iq id="0"> <query xmlns="http://jabber.org/protocol/disco#info" node="foo"> <identity category="conference" type="text" name="Chatroom" /> @@ -79,7 +79,7 @@ class TestDisco(SleekTest): iq['disco_info'].addFeature('foo') iq['disco_info'].addFeature('bar') - self.checkIq(iq, """ + self.check_iq(iq, """ <iq id="0"> <query xmlns="http://jabber.org/protocol/disco#info" node="foo"> <feature var="foo" /> @@ -97,7 +97,7 @@ class TestDisco(SleekTest): iq['disco_items'].addItem('user@localhost', 'foo') iq['disco_items'].addItem('user@localhost', 'bar', 'Testing') - self.checkIq(iq, """ + self.check_iq(iq, """ <iq id="0"> <query xmlns="http://jabber.org/protocol/disco#items" node="foo"> <item jid="user@localhost" /> |