mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
Removed debug from tests
This commit is contained in:
parent
0b3a9f5785
commit
3e3786eb61
@ -3,6 +3,7 @@
|
||||
#include <setjmp.h>
|
||||
#include <cmocka.h>
|
||||
#include <stdlib.h>
|
||||
#include <glib.h>
|
||||
|
||||
#include "xmpp/xmpp.h"
|
||||
#include "ui/ui.h"
|
||||
@ -10,11 +11,13 @@
|
||||
|
||||
void cmd_rooms_shows_message_when_not_connected(void **state)
|
||||
{
|
||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||
will_return(jabber_get_connection_status, JABBER_DISCONNECTED);
|
||||
expect_string(cons_show, msg, "You are not currently connected.");
|
||||
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||
|
||||
gboolean result = _cmd_rooms(NULL, *help);
|
||||
|
||||
assert_true(_cmd_rooms(NULL, *help));
|
||||
assert_true(result);
|
||||
|
||||
free(help);
|
||||
}
|
||||
|
@ -20,13 +20,9 @@ void empty_list_when_none_added(void **state)
|
||||
void contains_one_element(void **state)
|
||||
{
|
||||
roster_init();
|
||||
printf("0\n");
|
||||
roster_add("James", NULL, NULL, NULL, FALSE, TRUE);
|
||||
printf("1\n");
|
||||
GSList *list = roster_get_contacts();
|
||||
printf("2\n");
|
||||
assert_int_equal(1, g_slist_length(list));
|
||||
printf("3\n");
|
||||
roster_free();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user