aboutsummaryrefslogtreecommitdiffstats
path: root/tests/check-empathy-irc-chatroom-manager.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-10-13 15:53:53 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-10-13 15:53:53 +0800
commit7e4d8b0c52a46d61718fb15e5cf2741aa552b721 (patch)
tree1bd9113fd6b50c49d46871e423abf38e6b3896cf /tests/check-empathy-irc-chatroom-manager.c
parent1f242f9e69c4d69303e110222f917953550012ca (diff)
downloadgsoc2013-empathy-7e4d8b0c52a46d61718fb15e5cf2741aa552b721.tar
gsoc2013-empathy-7e4d8b0c52a46d61718fb15e5cf2741aa552b721.tar.gz
gsoc2013-empathy-7e4d8b0c52a46d61718fb15e5cf2741aa552b721.tar.bz2
gsoc2013-empathy-7e4d8b0c52a46d61718fb15e5cf2741aa552b721.tar.lz
gsoc2013-empathy-7e4d8b0c52a46d61718fb15e5cf2741aa552b721.tar.xz
gsoc2013-empathy-7e4d8b0c52a46d61718fb15e5cf2741aa552b721.tar.zst
gsoc2013-empathy-7e4d8b0c52a46d61718fb15e5cf2741aa552b721.zip
rename check-empathy-irc-chatroom-manager.c to check-empathy-chatroom-manager.c
svn path=/trunk/; revision=1545
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;
-}