diff options
author | James Booth <boothj5@gmail.com> | 2016-05-23 23:53:44 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-05-23 23:53:44 +0100 |
commit | 6559263b2fed1edc6b004dc3e50697600e450b9b (patch) | |
tree | 7b17f7d326ada6abb958e362fd76c8b4abc019f7 /tests/unittests | |
parent | 0edd4309257a8372761f44cbd576b027d1b9766c (diff) | |
download | profani-tty-6559263b2fed1edc6b004dc3e50697600e450b9b.tar.gz |
Option to bookmark room invites
issue #813
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/xmpp/stub_xmpp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unittests/xmpp/stub_xmpp.c b/tests/unittests/xmpp/stub_xmpp.c index 0fb9d828..6efcb783 100644 --- a/tests/unittests/xmpp/stub_xmpp.c +++ b/tests/unittests/xmpp/stub_xmpp.c @@ -254,6 +254,11 @@ void roster_send_name_change(const char * const barejid, const char * const new_ check_expected(groups); } +gboolean bookmark_exists(const char *const room) +{ + return FALSE; +} + void roster_send_add_to_group(const char * const group, PContact contact) {} void roster_send_remove_from_group(const char * const group, PContact contact) {} |