]> git.evergreen-ils.org Git - working/NCIPServer.git/blob - t/NCIPServer.t
Sample XML request, taken from
[working/NCIPServer.git] / t / NCIPServer.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5 use lib 'lib';
6
7 use Test::More tests => 2;
8 BEGIN { use_ok('NCIPServer') };
9
10 ok(my $server = NCIPServer->new({config_dir => 't/config_sample'}));
11
12 # use Data::Dumper;
13 # print Dumper $server;
14
15 # uncomment this if you want to run the server in test mode
16 # $server->run();