store httpduser variable in /etc/koha.conf
[koha.git] / testKoha.pl
1 #!/usr/bin/perl -w
2
3 # $Id$
4
5 use strict;
6 use Test::Harness;
7
8 # please add many tests here
9 # Please make the test name the same as the module name where possible
10
11 my @tests=(
12         't/format.t',
13         't/Input.t',
14         't/koha.t',
15         't/output.t',
16         't/require.t',
17 );
18
19
20 runtests (@tests);
21
22 exit;
23
24 # $Log$
25 # Revision 1.1.2.7  2002/06/20 15:19:33  amillar
26 # Test valid ISBN numbers in Input.pm
27 #