koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha misc/testKoha.pl t/Calendar.t t/Circulatio...


From: Chris Cormack
Subject: [Koha-cvs] koha misc/testKoha.pl t/Calendar.t t/Circulatio...
Date: Mon, 18 Jun 2007 03:20:21 +0000

CVSROOT:        /sources/koha
Module name:    koha
Changes by:     Chris Cormack <rangi>   07/06/18 03:20:21

Modified files:
        misc           : testKoha.pl 
Added files:
        t              : Calendar.t Circulation.t Context.t Date.t 
                         Labels.t Languages.t Letters.t Log.t 
                         Maintainance.t Members.t NewsChannels.t 
                         Output.t Print.t Record.t Reserves.t Review.t 
                         Search.t Serials.t Stats.t Suggestions.t 
                         Z3950.t 

Log message:
        Finishing up the last of the tests

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/misc/testKoha.pl?cvsroot=koha&r1=1.6&r2=1.7
http://cvs.savannah.gnu.org/viewcvs/koha/t/Calendar.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Circulation.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Context.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Date.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Labels.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Languages.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Letters.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Log.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Maintainance.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Members.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/NewsChannels.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Output.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Print.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Record.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Reserves.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Review.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Search.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Serials.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Stats.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Suggestions.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Z3950.t?cvsroot=koha&rev=1.1

Patches:
Index: misc/testKoha.pl
===================================================================
RCS file: /sources/koha/koha/misc/testKoha.pl,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- misc/testKoha.pl    18 Jun 2007 01:58:24 -0000      1.6
+++ misc/testKoha.pl    18 Jun 2007 03:20:19 -0000      1.7
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 
-# $Id: testKoha.pl,v 1.6 2007/06/18 01:58:24 rangi Exp $
+# $Id: testKoha.pl,v 1.7 2007/06/18 03:20:19 rangi Exp $
 
 
 # Copyright 2000-2002 Katipo Communications
@@ -40,13 +40,30 @@
        't/BookShelves.t',
        't/Boolean.t',
        't/Breeding.t',
-       
-       't/format.t',
+       't/Calendar.t',
+       't/Circulation.t',
+       't/Context.t',
+       't/Date.t',     
        't/Input.t',
        't/koha.t',
+       't/Labels.t',
+       't/Languages.t',
+       't/Letters.t',
+       't/Log.t',
+       't/Maintainance.t',
+       't/Members.t',
+       't/NewsChannels.t',
        't/output.t',
-       't/require.t',
-       
+       't/Overdues.t',
+       't/Print.t',
+       't/Record.t',
+       't/Reserves.t',
+       't/Review.t',
+       't/Search.t',
+       't/Serials.t',
+       't/Stats.t',
+       't/Suggestions.t',
+       't/Z3950.t'
 );
 
 
@@ -55,6 +72,9 @@
 exit;
 
 # $Log: testKoha.pl,v $
+# Revision 1.7  2007/06/18 03:20:19  rangi
+# Finishing up the last of the tests
+#
 # Revision 1.6  2007/06/18 01:58:24  rangi
 # Continuing on my tests mission
 #

Index: t/Calendar.t
===================================================================
RCS file: t/Calendar.t
diff -N t/Calendar.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Calendar.t        18 Jun 2007 03:20:19 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Calendar;
+$loaded = 1;
+print "ok 1\n";

Index: t/Circulation.t
===================================================================
RCS file: t/Circulation.t
diff -N t/Circulation.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Circulation.t     18 Jun 2007 03:20:19 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Circulation;
+$loaded = 1;
+print "ok 1\n";

Index: t/Context.t
===================================================================
RCS file: t/Context.t
diff -N t/Context.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Context.t 18 Jun 2007 03:20:19 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Context;
+$loaded = 1;
+print "ok 1\n";

Index: t/Date.t
===================================================================
RCS file: t/Date.t
diff -N t/Date.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Date.t    18 Jun 2007 03:20:19 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Date;
+$loaded = 1;
+print "ok 1\n";

Index: t/Labels.t
===================================================================
RCS file: t/Labels.t
diff -N t/Labels.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Labels.t  18 Jun 2007 03:20:20 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Labels;
+$loaded = 1;
+print "ok 1\n";

Index: t/Languages.t
===================================================================
RCS file: t/Languages.t
diff -N t/Languages.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Languages.t       18 Jun 2007 03:20:20 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Languages;
+$loaded = 1;
+print "ok 1\n";

Index: t/Letters.t
===================================================================
RCS file: t/Letters.t
diff -N t/Letters.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Letters.t 18 Jun 2007 03:20:20 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Letters;
+$loaded = 1;
+print "ok 1\n";

Index: t/Log.t
===================================================================
RCS file: t/Log.t
diff -N t/Log.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Log.t     18 Jun 2007 03:20:20 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Log;
+$loaded = 1;
+print "ok 1\n";

Index: t/Maintainance.t
===================================================================
RCS file: t/Maintainance.t
diff -N t/Maintainance.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Maintainance.t    18 Jun 2007 03:20:20 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Maintainance;
+$loaded = 1;
+print "ok 1\n";

Index: t/Members.t
===================================================================
RCS file: t/Members.t
diff -N t/Members.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Members.t 18 Jun 2007 03:20:20 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Members;
+$loaded = 1;
+print "ok 1\n";

Index: t/NewsChannels.t
===================================================================
RCS file: t/NewsChannels.t
diff -N t/NewsChannels.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/NewsChannels.t    18 Jun 2007 03:20:20 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::NewsChannels;
+$loaded = 1;
+print "ok 1\n";

Index: t/Output.t
===================================================================
RCS file: t/Output.t
diff -N t/Output.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Output.t  18 Jun 2007 03:20:20 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Accounts;
+$loaded = 1;
+print "ok 1\n";

Index: t/Print.t
===================================================================
RCS file: t/Print.t
diff -N t/Print.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Print.t   18 Jun 2007 03:20:20 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Print;
+$loaded = 1;
+print "ok 1\n";

Index: t/Record.t
===================================================================
RCS file: t/Record.t
diff -N t/Record.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Record.t  18 Jun 2007 03:20:20 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Record;
+$loaded = 1;
+print "ok 1\n";

Index: t/Reserves.t
===================================================================
RCS file: t/Reserves.t
diff -N t/Reserves.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Reserves.t        18 Jun 2007 03:20:21 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Reserves;
+$loaded = 1;
+print "ok 1\n";

Index: t/Review.t
===================================================================
RCS file: t/Review.t
diff -N t/Review.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Review.t  18 Jun 2007 03:20:21 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Accounts;
+$loaded = 1;
+print "ok 1\n";

Index: t/Search.t
===================================================================
RCS file: t/Search.t
diff -N t/Search.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Search.t  18 Jun 2007 03:20:21 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Search;
+$loaded = 1;
+print "ok 1\n";

Index: t/Serials.t
===================================================================
RCS file: t/Serials.t
diff -N t/Serials.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Serials.t 18 Jun 2007 03:20:21 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Serials;
+$loaded = 1;
+print "ok 1\n";

Index: t/Stats.t
===================================================================
RCS file: t/Stats.t
diff -N t/Stats.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Stats.t   18 Jun 2007 03:20:21 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Stats;
+$loaded = 1;
+print "ok 1\n";

Index: t/Suggestions.t
===================================================================
RCS file: t/Suggestions.t
diff -N t/Suggestions.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Suggestions.t     18 Jun 2007 03:20:21 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Suggestions;
+$loaded = 1;
+print "ok 1\n";

Index: t/Z3950.t
===================================================================
RCS file: t/Z3950.t
diff -N t/Z3950.t
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ t/Z3950.t   18 Jun 2007 03:20:21 -0000      1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Z3950;
+$loaded = 1;
+print "ok 1\n";




reply via email to

[Prev in Thread] Current Thread [Next in Thread]