@@ -, +, @@ Notice 1 test is run Notice 3 tests are run --- t/Log.t | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/t/Log.t +++ a/t/Log.t @@ -6,9 +6,12 @@ use strict; use warnings; -use Test::More tests => 1; +use Test::More tests => 3; BEGIN { use_ok('C4::Log'); } +ok( my $hash=GetLogStatus(),"Testing git log status"); + +ok( $hash->{BorrowersLog}, 'Testing hash is non empty'); --