Fixing number of tests
authorChris Cormack <chrisc@catalyst.net.nz>
Wed, 18 Sep 2013 23:58:40 +0000 (11:58 +1200)
committerChris Cormack <chrisc@catalyst.net.nz>
Wed, 18 Sep 2013 23:58:40 +0000 (11:58 +1200)
t/NCIP_Handler.t

index 700906c..476e313 100644 (file)
@@ -3,7 +3,7 @@
 #
 #         FILE: NCIP_Handler.t
 #
-#  DESCRIPTION: 
+#  DESCRIPTION:
 #
 #        FILES: ---
 #         BUGS: ---
 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() );