diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-07-17 14:19:04 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-07-17 14:19:04 +0200 |
commit | 5ab77c745270d7d5c016c1dc7ef2a82533a4b16e (patch) | |
tree | 259377cc666f8b9c7954fc4e7b8f7a912bcfe101 /tests/test_stream_exceptions.py | |
parent | e5582694c07236e6830c20361840360a1dde37f3 (diff) | |
download | slixmpp-5ab77c745270d7d5c016c1dc7ef2a82533a4b16e.tar.gz slixmpp-5ab77c745270d7d5c016c1dc7ef2a82533a4b16e.tar.bz2 slixmpp-5ab77c745270d7d5c016c1dc7ef2a82533a4b16e.tar.xz slixmpp-5ab77c745270d7d5c016c1dc7ef2a82533a4b16e.zip |
Rename to slixmpp
Diffstat (limited to 'tests/test_stream_exceptions.py')
-rw-r--r-- | tests/test_stream_exceptions.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/test_stream_exceptions.py b/tests/test_stream_exceptions.py index d18d059a..049060e8 100644 --- a/tests/test_stream_exceptions.py +++ b/tests/test_stream_exceptions.py @@ -1,11 +1,11 @@ -from sleekxmpp.xmlstream.matcher import MatchXPath -from sleekxmpp.xmlstream.handler import Callback -from sleekxmpp.exceptions import XMPPError +from slixmpp.xmlstream.matcher import MatchXPath +from slixmpp.xmlstream.handler import Callback +from slixmpp.exceptions import XMPPError import unittest -from sleekxmpp.test import SleekTest +from slixmpp.test import SlixTest -class TestStreamExceptions(SleekTest): +class TestStreamExceptions(SlixTest): """ Test handling roster updates. """ @@ -41,7 +41,7 @@ class TestStreamExceptions(SleekTest): """) def testExceptionContinueWorking(self): - """Test that Sleek continues to respond after an XMPPError is raised.""" + """Test that Slixmpp continues to respond after an XMPPError is raised.""" def message(msg): msg.reply() @@ -208,7 +208,7 @@ class TestStreamExceptions(SleekTest): <undefined-condition xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" /> <text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"> - SleekXMPP got into trouble. + Slixmpp got into trouble. </text> </error> </message> @@ -217,7 +217,7 @@ class TestStreamExceptions(SleekTest): self.assertEqual(raised_errors, [True], "Exception was not raised: %s" % raised_errors) def testUnknownException(self): - """Test Sleek continues to respond after an unknown exception.""" + """Test Slixmpp continues to respond after an unknown exception.""" raised_errors = [] @@ -243,7 +243,7 @@ class TestStreamExceptions(SleekTest): <undefined-condition xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" /> <text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"> - SleekXMPP got into trouble. + Slixmpp got into trouble. </text> </error> </message> @@ -261,7 +261,7 @@ class TestStreamExceptions(SleekTest): <undefined-condition xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" /> <text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"> - SleekXMPP got into trouble. + Slixmpp got into trouble. </text> </error> </message> |