diff options
author | Lance Stout <lancestout@gmail.com> | 2010-10-26 23:47:17 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-10-26 23:47:17 -0400 |
commit | 65aa6573df3a8f298e7df96473014c19216971ef (patch) | |
tree | d9a40d480071bd5e1983f3de41aa1860be1baa98 /tests/test_stanza_roster.py | |
parent | b888610525a441dce622bf6132a4b3cab76a26b2 (diff) | |
download | slixmpp-65aa6573df3a8f298e7df96473014c19216971ef.tar.gz slixmpp-65aa6573df3a8f298e7df96473014c19216971ef.tar.bz2 slixmpp-65aa6573df3a8f298e7df96473014c19216971ef.tar.xz slixmpp-65aa6573df3a8f298e7df96473014c19216971ef.zip |
First pass at integrating the new roster manager.
Diffstat (limited to 'tests/test_stanza_roster.py')
-rw-r--r-- | tests/test_stanza_roster.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_stanza_roster.py b/tests/test_stanza_roster.py index a0e57987..443eab3e 100644 --- a/tests/test_stanza_roster.py +++ b/tests/test_stanza_roster.py @@ -48,10 +48,14 @@ class TestRosterStanzas(SleekTest): 'user@example.com': { 'name': 'User', 'subscription': 'both', + 'ask': '', + 'approved': '', 'groups': ['Friends', 'Coworkers']}, 'otheruser@example.com': { 'name': 'Other User', 'subscription': 'both', + 'ask': '', + 'approved': '', 'groups': []}} debug = "Roster items don't match after retrieval." debug += "\nReturned: %s" % str(iq['roster']['items']) |