aboutsummaryrefslogtreecommitdiffstats
path: root/tests/check-empathy-irc-chatroom-manager.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check-empathy-irc-chatroom-manager.c')
-rw-r--r--tests/check-empathy-irc-chatroom-manager.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/tests/check-empathy-irc-chatroom-manager.c b/tests/check-empathy-irc-chatroom-manager.c
deleted file mode 100644
index 0865a5ae0..000000000
--- a/tests/check-empathy-irc-chatroom-manager.c
+++ /dev/null
@@ -1,39 +0,0 @@
-#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;
-}