Galen Charlton
7fd5071e67
* removed t/SIP_SIPServer.t - despite the file name, C4/SIP/SIPserver.pm is not actually a module and cannot be 'used' or 'required' * set module search path so that t/SIP_ILS.t and t/SIP_Sip.t will pass Signed-off-by: Galen Charlton <gmcharlt@gmail.com> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
16 lines
243 B
Perl
Executable file
16 lines
243 B
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
# This Koha test module is a stub!
|
|
# Add more tests here!!!
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Test::More tests => 1;
|
|
|
|
BEGIN {
|
|
use FindBin;
|
|
use lib "$FindBin::Bin/../C4/SIP";
|
|
use_ok('C4::SIP::Sip');
|
|
}
|
|
|