mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
19 lines
335 B
C
19 lines
335 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);
|
||
|
}
|