use strict;
use warnings;
+use Sys::Syslog;
+use lib 'lib';
-use Test::More tests => 4; # last test to print
+use Test::More tests => 5; # last test to print
use_ok('NCIP::Configuration');
-ok( my $config = NCIP::Configuration->new('../t/config_sample'),
+ok( my $config = NCIP::Configuration->new('t/config_sample'),
'Creating a config object' );
# because the file is called NCIP.xml we now have that namespace
is( $server_params->{'min_servers'}, 1, 'Do we have a minimum of one server' );
+ok ($config->find_service('127.0.0.1','6001','tcp'),'Testing find_service');
+