blob: 0865a5ae0c95413c24a7b101a59228f0c4a5fc4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <glib/gstdio.h>
#include <check.h>
#include "check-helpers.h"
#include "check-libempathy.h"
#include "check-irc-helper.h"
#include <libempathy/empathy-chatroom-manager.h>
static gchar *
get_xml_file (const gchar *filename)
{
return g_build_filename (g_getenv ("EMPATHY_SRCDIR"), "tests", "xml",
filename, NULL);
}
START_TEST (test_empathy_chatroom_manager_new)
{
EmpathyChatroomManager *mgr;
gchar *file;
file = get_xml_file ("chatrooms.xml");
mgr = empathy_chatroom_manager_new (file);
g_free (file);
g_object_unref (mgr);
}
END_TEST
TCase *
make_empathy_chatroom_manager_tcase (void)
{
TCase *tc = tcase_create ("empathy-irc-chatroom-manager");
tcase_add_test (tc, test_empathy_chatroom_manager_new);
return tc;
}
|