Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
276 B

#!/usr/bin/perl
use Modern::Perl;
use Test::More tests => 2;
BEGIN {
use_ok('Koha::Z3950Responder');
}
my $zR = Koha::Z3950Responder->new({});
my $args = { PEER_NAME => 'PEER' };
$zR->init_handler($args);
is ( $args->{IMP_NAME}, 'Koha', 'Server returns basic info' );