Merge branch 'master' of /home/jmf/repos/koha-rm-root.git/
[koha.git] / misc / 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/Accounts.t',
31         't/Acquisition.t',
32         't/Amazon.t',
33         't/AuthoritiesMarc.t',
34         't/Auth.t',
35         't/Auth_with_ldap.t',
36         't/Barcodes_PrinterConfig.t',
37         't/Biblio.t',
38         't/Bookfund.t',
39         't/Bookseller.t',
40         't/BookShelves.t',
41         't/Boolean.t',
42         't/Breeding.t',
43         't/Calendar.t',
44         't/Circulation.t',
45         't/Context.t',
46         't/Date.t',     
47         't/Input.t',
48         't/koha.t',
49         't/Labels.t',
50         't/Languages.t',
51         't/Letters.t',
52         't/Log.t',
53         't/Maintainance.t',
54         't/Members.t',
55         't/NewsChannels.t',
56         't/output.t',
57         't/Overdues.t',
58         't/Print.t',
59         't/Record.t',
60         't/Reserves.t',
61         't/Review.t',
62         't/Search.t',
63         't/Serials.t',
64         't/Stats.t',
65         't/Suggestions.t',
66         't/Z3950.t'
67 );
68
69
70 runtests (@tests);
71
72 exit;
73
74 # $Log$
75 # Revision 1.7  2007/06/18 03:20:19  rangi
76 # Finishing up the last of the tests
77 #
78 # Revision 1.6  2007/06/18 01:58:24  rangi
79 # Continuing on my tests mission
80 #
81 # Revision 1.5  2007/06/18 01:34:50  rangi
82 # More test files
83 #
84 # Revision 1.4  2007/06/18 00:51:10  rangi
85 # Continuing to add tests
86 #
87 # Revision 1.3  2007/06/17 23:44:04  rangi
88 # Simple compile only test for C4::Amazon
89 # Needs tests written for the 2 functions in it.
90 #
91 # Revision 1.2  2007/06/17 23:35:36  rangi
92 # Working on unit tests
93 #
94 # Revision 1.1  2002/11/22 09:05:18  tipaul
95 # moving non koha-running files to misc dir
96 #
97 # Revision 1.6  2002/08/14 18:12:51  tonnesen
98 # Added copyright statement to all .pl and .pm files
99 #
100 # Revision 1.5  2002/06/20 18:04:46  tonnesen
101 # Are we getting sick of merging yet?  Not me!
102 #
103 # Revision 1.1.2.7  2002/06/20 15:19:33  amillar
104 # Test valid ISBN numbers in Input.pm
105 #