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