bug 5327: follow-up to fix SIP tests

* 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>
This commit is contained in:
Galen Charlton 2010-10-31 18:25:47 -04:00 committed by Chris Cormack
parent e0892a5139
commit 7fd5071e67
3 changed files with 4 additions and 14 deletions

View file

@ -9,6 +9,8 @@ use warnings;
use Test::More tests => 1;
BEGIN {
use FindBin;
use lib "$FindBin::Bin/../C4/SIP";
use_ok('C4::SIP::ILS');
}

View file

@ -1,14 +0,0 @@
#!/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_ok('C4::SIP::SIPServer');
}

View file

@ -9,6 +9,8 @@ use warnings;
use Test::More tests => 1;
BEGIN {
use FindBin;
use lib "$FindBin::Bin/../C4/SIP";
use_ok('C4::SIP::Sip');
}