From cb00476f09d5ab7e342f562e6c516f23c98aac88 Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Thu, 8 Mar 2012 21:24:39 +0000 Subject: Added a termkey_is_started() accessor; unit test it a bit --- t/01base.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 't') diff --git a/t/01base.c b/t/01base.c index 54ad44d..463a0ed 100644 --- a/t/01base.c +++ b/t/01base.c @@ -6,13 +6,22 @@ int main(int argc, char *argv[]) { TermKey *tk; - plan_tests(3); + plan_tests(6); tk = termkey_new_abstract("vt100", 0); ok(!!tk, "termkey_new_abstract"); is_int(termkey_get_buffer_size(tk), 256, "termkey_get_buffer_size"); + ok(termkey_is_started(tk), "termkey_is_started true after construction"); + + termkey_stop(tk); + + ok(!termkey_is_started(tk), "termkey_is_started false after termkey_stop()"); + + termkey_start(tk); + + ok(termkey_is_started(tk), "termkey_is_started true after termkey_start()"); termkey_destroy(tk); -- cgit v1.2.3