summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-10-07 19:42:28 -0400
committerLance Stout <lancestout@gmail.com>2010-10-07 19:42:28 -0400
commite02ffe854745c6c39127967f5d1dcaff915d7190 (patch)
treee33e2c0557412fd59532788ce0d1a0a8370fc60b /tests
parent42bfca1c8785c6dd15260c22acda6375f3dbf908 (diff)
downloadslixmpp-e02ffe854745c6c39127967f5d1dcaff915d7190.tar.gz
slixmpp-e02ffe854745c6c39127967f5d1dcaff915d7190.tar.bz2
slixmpp-e02ffe854745c6c39127967f5d1dcaff915d7190.tar.xz
slixmpp-e02ffe854745c6c39127967f5d1dcaff915d7190.zip
Corrected test errors.
There was a bug in the XML compare method.
Diffstat (limited to 'tests')
-rw-r--r--tests/__init__.py0
-rw-r--r--tests/test_stanza_element.py6
-rw-r--r--tests/test_stanza_error.py8
-rw-r--r--tests/test_stanza_gmail.py2
4 files changed, 9 insertions, 7 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/tests/__init__.py
diff --git a/tests/test_stanza_element.py b/tests/test_stanza_element.py
index c157e0a8..2a774d6c 100644
--- a/tests/test_stanza_element.py
+++ b/tests/test_stanza_element.py
@@ -607,7 +607,7 @@ class TestElementBase(SleekTest):
<foo xmlns="foo">
<foobar qux="a" />
</foo>
- """)
+ """, use_values=False)
self.failUnless(len(stanza) == 1,
"Incorrect stanza size with 1 substanza.")
@@ -617,7 +617,7 @@ class TestElementBase(SleekTest):
<foobar qux="a" />
<foobar qux="b" />
</foo>
- """)
+ """, use_values=False)
self.failUnless(len(stanza) == 2,
"Incorrect stanza size with 2 substanzas.")
@@ -627,7 +627,7 @@ class TestElementBase(SleekTest):
<foo xmlns="foo">
<foobar qux="b" />
</foo>
- """)
+ """, use_values=False)
# Test iterating over substanzas
stanza.append(substanza1)
diff --git a/tests/test_stanza_error.py b/tests/test_stanza_error.py
index f76ac62d..d5ed6f5f 100644
--- a/tests/test_stanza_error.py
+++ b/tests/test_stanza_error.py
@@ -30,11 +30,13 @@ class TestErrorStanzas(SleekTest):
self.failUnless(msg['error']['condition'] == 'item-not-found', "Error condition doesn't match.")
- del msg['error']['condition']
+ msg['error']['condition'] = 'resource-constraint'
self.check_message(msg, """
<message type="error">
- <error type="cancel" />
+ <error type="cancel">
+ <resource-constraint xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" />
+ </error>
</message>
""")
@@ -52,6 +54,6 @@ class TestErrorStanzas(SleekTest):
<text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas">Error!</text>
</error>
</message>
- """)
+ """, use_values=False)
suite = unittest.TestLoader().loadTestsFromTestCase(TestErrorStanzas)
diff --git a/tests/test_stanza_gmail.py b/tests/test_stanza_gmail.py
index 5c31a4e2..a5630e62 100644
--- a/tests/test_stanza_gmail.py
+++ b/tests/test_stanza_gmail.py
@@ -25,7 +25,7 @@ class TestGmail(SleekTest):
newer-than-tid="11134623426430234"
q="is:starred" />
</iq>
- """)
+ """, use_values=False)
def testMailBox(self):
"""Testing reading from Gmail mailbox result"""