mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
35 lines
613 B
C
35 lines
613 B
C
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <setjmp.h>
|
|
#include <cmocka.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "muc.h"
|
|
|
|
void test_muc_add_invite(void **state)
|
|
{
|
|
char *room = "room@conf.server";
|
|
muc_init();
|
|
muc_add_invite(room);
|
|
|
|
gboolean invite_exists = muc_invites_include(room);
|
|
|
|
assert_true(invite_exists);
|
|
|
|
muc_close();
|
|
}
|
|
|
|
void test_muc_remove_invite(void **state)
|
|
{
|
|
char *room = "room@conf.server";
|
|
muc_init();
|
|
muc_add_invite(room);
|
|
muc_remove_invite(room);
|
|
|
|
gboolean invite_exists = muc_invites_include(room);
|
|
|
|
assert_false(invite_exists);
|
|
|
|
muc_close();
|
|
}
|