summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/test.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c
index 579b5e1..ed27664 100644
--- a/test/test.c
+++ b/test/test.c
@@ -217,6 +217,13 @@ START_TEST(test_hangul_ic_process_3f)
}
END_TEST
+START_TEST(test_hangul_ic_process_3s)
+{
+ /* ㅎㅐㅅㅅ */
+ fail_unless(check_preedit("3s", "mrqq", L"했"));
+}
+END_TEST
+
START_TEST(test_hangul_ic_process_romaja)
{
HangulInputContext* ic;
@@ -574,6 +581,7 @@ Suite* libhangul_suite()
tcase_add_test(hangul, test_hangul_ic_process_2);
tcase_add_test(hangul, test_hangul_ic_process_2y);
tcase_add_test(hangul, test_hangul_ic_process_3f);
+ tcase_add_test(hangul, test_hangul_ic_process_3s);
tcase_add_test(hangul, test_hangul_ic_process_romaja);
tcase_add_test(hangul, test_hangul_ic_auto_reorder);
tcase_add_test(hangul, test_hangul_ic_combi_on_double_stroke);