aboutsummaryrefslogtreecommitdiffstats
path: root/tests/empathy-utils-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/empathy-utils-test.c')
-rw-r--r--tests/empathy-utils-test.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/empathy-utils-test.c b/tests/empathy-utils-test.c
deleted file mode 100644
index 896793aa0..000000000
--- a/tests/empathy-utils-test.c
+++ /dev/null
@@ -1,33 +0,0 @@
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-
-#include <libempathy/empathy-utils.h>
-#include "test-helper.h"
-
-static void
-test_substring (void)
-{
- gchar *tmp;
-
- tmp = empathy_substring ("empathy", 2, 6);
- g_assert (tmp != NULL);
- g_assert (strcmp (tmp, "path") == 0);
-
- g_free (tmp);
-}
-
-int
-main (int argc,
- char **argv)
-{
- int result;
-
- test_init (argc, argv);
-
- g_test_add_func ("/utils/substring", test_substring);
-
- result = g_test_run ();
- test_deinit ();
- return result;
-}