]> git.evergreen-ils.org Git - working/NCIPServer.git/blob - test_server.pl
Fixing the tests so they can run with prove
[working/NCIPServer.git] / test_server.pl
1 #!/usr/bin/perl 
2 #===============================================================================
3 #
4 #         FILE: test_server.pl
5 #
6 #        USAGE: ./test_server.pl
7 #
8 #  DESCRIPTION:
9 #
10 #      OPTIONS: ---
11 # REQUIREMENTS: ---
12 #         BUGS: ---
13 #        NOTES: ---
14 #       AUTHOR: Chris Cormack (rangi), chrisc@catalyst.net.nz
15 # ORGANIZATION: Koha Development Team
16 #      VERSION: 1.0
17 #      CREATED: 28/08/13 14:12:51
18 #     REVISION: ---
19 #===============================================================================
20
21 use strict;
22 use warnings;
23
24 use lib "lib";
25
26 use NCIPServer;
27
28 my $server = NCIPServer->new( { config_dir => 't/config_sample' } );
29 $server->run();