From: Julian FIOL Date: Mon, 9 Mar 2015 16:21:17 +0000 (+0100) Subject: Bug 13814 : add 6 unit tests in t/Boolean.t X-Git-Tag: v3.20.00-beta~485 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=d11c144eac41e86901d435c7a60ca3f367321497;p=koha-ffzg.git Bug 13814 : add 6 unit tests in t/Boolean.t Works as expected. Signed-off-by: Marc Veron Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi --- diff --git a/t/Boolean.t b/t/Boolean.t index 0f04913cae..af81f13404 100755 --- a/t/Boolean.t +++ b/t/Boolean.t @@ -2,19 +2,25 @@ use strict; use warnings; -use Test::More tests => 13; +use Test::More tests => 19; BEGIN { use_ok( 'C4::Boolean', qw( true_p ) ); } is( true_p('0'), '0', 'recognizes \'0\' as false' ); +is( true_p('nil'), '0', 'recognizes \'nil\' as false' ); is( true_p('false'), '0', 'recognizes \'false\' as false' ); is( true_p('off'), '0', 'recognizes \'off\' as false' ); is( true_p('no'), '0', 'recognizes \'no\' as false' ); +is( true_p('n'), '0', 'recognizes \'n\' as false' ); +is( true_p('NO'), '0', 'verified case insensitivity' ); is( true_p('1'), '1', 'recognizes \'1\' as true' ); +is( true_p('-1'), '1', 'recognizes \'-1\' as true' ); +is( true_p('t'), '1', 'recognizes \'t\' as true' ); is( true_p('true'), '1', 'recognizes \'true\' as true' ); is( true_p('on'), '1', 'recognizes \'on\' as true' ); is( true_p('yes'), '1', 'recognizes \'yes\' as true' ); +is( true_p('y'), '1', 'recognizes \'y\' as true' ); is( true_p('YES'), '1', 'verified case insensitivity' ); is( true_p(undef), undef, 'recognizes undefined as not boolean' );