mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Merge branch 'master' into plugins
This commit is contained in:
commit
85264b6662
@ -149,28 +149,6 @@ void add_twice_at_end_adds_once(void **state)
|
||||
roster_free();
|
||||
}
|
||||
|
||||
void test_show_online_when_no_value(void **state)
|
||||
{
|
||||
roster_init();
|
||||
roster_add("James", NULL, NULL, NULL, FALSE, TRUE);
|
||||
GSList *list = roster_get_contacts();
|
||||
PContact james = list->data;
|
||||
|
||||
assert_string_equal("offline", p_contact_presence(james));
|
||||
roster_free();
|
||||
}
|
||||
|
||||
void test_status_when_no_value(void **state)
|
||||
{
|
||||
roster_init();
|
||||
roster_add("James", NULL, NULL, NULL, FALSE, TRUE);
|
||||
GSList *list = roster_get_contacts();
|
||||
PContact james = list->data;
|
||||
|
||||
assert_null(p_contact_status(james));
|
||||
roster_free();
|
||||
}
|
||||
|
||||
void find_first_exists(void **state)
|
||||
{
|
||||
roster_init();
|
||||
|
@ -8,8 +8,6 @@ void first_three_elements_correct(void **state);
|
||||
void add_twice_at_beginning_adds_once(void **state);
|
||||
void add_twice_in_middle_adds_once(void **state);
|
||||
void add_twice_at_end_adds_once(void **state);
|
||||
void test_show_online_when_no_value(void **state);
|
||||
void test_status_when_no_value(void **state);
|
||||
void find_first_exists(void **state);
|
||||
void find_second_exists(void **state);
|
||||
void find_third_exists(void **state);
|
||||
|
@ -159,8 +159,6 @@ int main(int argc, char* argv[]) {
|
||||
unit_test(add_twice_at_beginning_adds_once),
|
||||
unit_test(add_twice_in_middle_adds_once),
|
||||
unit_test(add_twice_at_end_adds_once),
|
||||
unit_test(test_show_online_when_no_value),
|
||||
unit_test(test_status_when_no_value),
|
||||
unit_test(find_first_exists),
|
||||
unit_test(find_second_exists),
|
||||
unit_test(find_third_exists),
|
||||
|
Loading…
Reference in New Issue
Block a user