summaryrefslogtreecommitdiff
path: root/test/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.c')
-rw-r--r--test/test.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c
index 3147ee5..579b5e1 100644
--- a/test/test.c
+++ b/test/test.c
@@ -543,6 +543,12 @@ START_TEST(test_hangul_keyboard)
fail_unless(name != NULL,
"error: keyboard id == NULL");
}
+
+ HangulKeyboard* keyboard;
+ fail_unless(
+ (keyboard = hangul_keyboard_new_from_file(TEST_SOURCE_DIR "/recursive.xml")) != NULL
+ );
+ hangul_keyboard_delete(keyboard);
}
END_TEST