6 #include "check-helpers.h"
7 #include "check-libempathy.h"
9 #include <libempathy/empathy-utils.h>
11 START_TEST (test_empathy_substring
)
15 tmp
= empathy_substring ("empathy", 2, 6);
16 fail_if (tmp
== NULL
);
17 fail_if (strcmp (tmp
, "path") != 0);
24 make_empathy_utils_tcase (void)
26 TCase
*tc
= tcase_create ("empathy-utils");
27 tcase_add_test (tc
, test_empathy_substring
);