From e2019f37567f71b26b9c1abc69b71c85edd11a86 Mon Sep 17 00:00:00 2001 From: Ed Freyfogle Date: Wed, 15 Aug 2018 10:38:23 -0500 Subject: [PATCH] add lithuania test --- t/get_currencies_for_country.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/get_currencies_for_country.t b/t/get_currencies_for_country.t index 2a888c0..f70e40e 100755 --- a/t/get_currencies_for_country.t +++ b/t/get_currencies_for_country.t @@ -15,5 +15,6 @@ binmode Test::More->builder->todo_output, ":encoding(UTF-8)"; is_deeply(get_currencies_for_country('fr'), ['eur'], 'Test France'); is_deeply(get_currencies_for_country('us'), ['usd'], 'Test USA'); is_deeply(get_currencies_for_country('cu'), ['cuc', 'cup'], 'Test Cuba'); +is_deeply(get_currencies_for_country('lt'), ['eur'], 'Test Lithuania'); done_testing();