From bc14e96093c82d6da45cd6ee8aa8dffe720b5492 Mon Sep 17 00:00:00 2001 From: Chris Broesamle Date: Tue, 3 Jun 2014 14:47:58 -0700 Subject: [PATCH] Update test_hola.rb Anyoung, added test for Korean. --- 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