From 2dc1eed3e2d100d43025605300202f06d937e769 Mon Sep 17 00:00:00 2001 From: merllissia Date: Tue, 14 Jan 2014 14:18:35 +1300 Subject: [PATCH] [PASSED QA] bug 11545 Increasing test coverage for Languages.pm To test 1. Run prove t/Languages.t Apply patch 2. Run prove t/Languages.t Notice: More tests are run Signed-off-by: alex_h Signed-off-by: Magnus Enger Adds another passing test. I took th liberty of moving the test plan from the subject to the commit message. :-) Signed-off-by: Katrin Fischer Tests pass :) --- t/Languages.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/Languages.t b/t/Languages.t index 5918d95..f3bac39 100755 --- a/t/Languages.t +++ b/t/Languages.t @@ -6,7 +6,7 @@ use strict; use warnings; -use Test::More tests => 4; +use Test::More tests => 5; BEGIN { use_ok('C4::Languages'); @@ -17,3 +17,5 @@ isnt(C4::Languages::_get_themes(), undef, 'testing _get_themes doesnt return und ok(C4::Languages::_get_language_dirs(), 'test getting _get_language_dirs'); is(C4::Languages::accept_language(),undef, 'test that accept_languages returns undef when nothing is entered'); + +ok(C4::Languages::getAllLanguages(), 'test get all languages'); -- 1.8.3.2