From 4836d87e1cf8854258307b4c1a75ae40ed278822 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Thu, 19 Sep 2013 11:58:40 +1200 Subject: [PATCH] Fixing number of tests --- t/NCIP_Handler.t | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/t/NCIP_Handler.t b/t/NCIP_Handler.t index 700906c..476e313 100644 --- a/t/NCIP_Handler.t +++ b/t/NCIP_Handler.t @@ -3,7 +3,7 @@ # # FILE: NCIP_Handler.t # -# DESCRIPTION: +# DESCRIPTION: # # FILES: --- # BUGS: --- @@ -18,12 +18,12 @@ use strict; use warnings; -use Test::More tests => 1; # last test to print +use Test::More tests => 3; # last test to print use lib 'lib'; use_ok('NCIP::Handler'); -my $type='LookupItem'; +my $type = 'LookupItem'; -ok (my $handler = NCIP::Handler->new($type), 'Create new handler'); -ok (my $response = $handler->handle()); +ok( my $handler = NCIP::Handler->new($type), 'Create new handler' ); +ok( my $response = $handler->handle() ); -- 2.43.2