mirror of
https://github.com/profanity-im/profanity.git
synced 2024-10-27 20:30:13 -04:00
e043029a50
issue #880
25 lines
485 B
C
25 lines
485 B
C
#include <glib.h>
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <setjmp.h>
|
|
#include <cmocka.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <stabber.h>
|
|
#include <expect.h>
|
|
|
|
#include "proftest.h"
|
|
|
|
void
|
|
disconnect_ends_session(void **state)
|
|
{
|
|
prof_connect();
|
|
|
|
prof_input("/disconnect");
|
|
assert_true(prof_output_exact("stabber@localhost logged out successfully."));
|
|
|
|
prof_input("/roster");
|
|
assert_true(prof_output_exact("You are not currently connected."));
|
|
}
|