bugfix
[koha.git] / testKoha.pl
1 #!/usr/bin/perl -w
2
3 # $Id$
4
5
6 # Copyright 2000-2002 Katipo Communications
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along with
20 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
21 # Suite 330, Boston, MA  02111-1307 USA
22
23 use strict;
24 use Test::Harness;
25
26 # please add many tests here
27 # Please make the test name the same as the module name where possible
28
29 my @tests=(
30         't/format.t',
31         't/Input.t',
32         't/koha.t',
33         't/output.t',
34         't/require.t',
35         't/Catalogue.t',
36 );
37
38
39 runtests (@tests);
40
41 exit;
42
43 # $Log$
44 # Revision 1.6  2002/08/14 18:12:51  tonnesen
45 # Added copyright statement to all .pl and .pm files
46 #
47 # Revision 1.5  2002/06/20 18:04:46  tonnesen
48 # Are we getting sick of merging yet?  Not me!
49 #
50 # Revision 1.1.2.7  2002/06/20 15:19:33  amillar
51 # Test valid ISBN numbers in Input.pm
52 #