From 4a7f7e9eddf0abbd34bc9a8b7c3bfc48839c2147 Mon Sep 17 00:00:00 2001 From: ciban Date: Thu, 19 Sep 2013 11:46:08 +0100 Subject: [PATCH] Add test for Korean hello --- test/test_hola.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_hola.rb b/test/test_hola.rb index 54d1b20..82c5989 100644 --- a/test/test_hola.rb +++ b/test/test_hola.rb @@ -13,4 +13,8 @@ def test_any_hello def test_spanish_hello assert_equal "hola mundo", Hola.hi("spanish") end + + def test_korean_hello + assert_equal "anyoung ha se yo", Hola.hi("korean") + end end