[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha misc/testKoha.pl t/Biblio.t t/Bookfund.t t...
From: |
Chris Cormack |
Subject: |
[Koha-cvs] koha misc/testKoha.pl t/Biblio.t t/Bookfund.t t... |
Date: |
Mon, 18 Jun 2007 01:34:51 +0000 |
CVSROOT: /sources/koha
Module name: koha
Changes by: Chris Cormack <rangi> 07/06/18 01:34:50
Modified files:
misc : testKoha.pl
Added files:
t : Biblio.t Bookfund.t Bookseller.t
Log message:
More test files
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/misc/testKoha.pl?cvsroot=koha&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/koha/t/Biblio.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Bookfund.t?cvsroot=koha&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/koha/t/Bookseller.t?cvsroot=koha&rev=1.1
Patches:
Index: misc/testKoha.pl
===================================================================
RCS file: /sources/koha/koha/misc/testKoha.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- misc/testKoha.pl 18 Jun 2007 00:51:10 -0000 1.4
+++ misc/testKoha.pl 18 Jun 2007 01:34:50 -0000 1.5
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
-# $Id: testKoha.pl,v 1.4 2007/06/18 00:51:10 rangi Exp $
+# $Id: testKoha.pl,v 1.5 2007/06/18 01:34:50 rangi Exp $
# Copyright 2000-2002 Katipo Communications
@@ -34,6 +34,9 @@
't/Auth.t',
't/Auth_with_ldap.t',
't/Barcodes_PrinterConfig.t',
+ 't/Biblio.t',
+ 't/Bookfund.t'
+ 't/Bookseller.t',
't/format.t',
't/Input.t',
't/koha.t',
@@ -48,6 +51,9 @@
exit;
# $Log: testKoha.pl,v $
+# Revision 1.5 2007/06/18 01:34:50 rangi
+# More test files
+#
# Revision 1.4 2007/06/18 00:51:10 rangi
# Continuing to add tests
#
Index: t/Biblio.t
===================================================================
RCS file: t/Biblio.t
diff -N t/Biblio.t
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/Biblio.t 18 Jun 2007 01:34:50 -0000 1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Biblio;
+$loaded = 1;
+print "ok 1\n";
Index: t/Bookfund.t
===================================================================
RCS file: t/Bookfund.t
diff -N t/Bookfund.t
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/Bookfund.t 18 Jun 2007 01:34:50 -0000 1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Bookfund;
+$loaded = 1;
+print "ok 1\n";
Index: t/Bookseller.t
===================================================================
RCS file: t/Bookseller.t
diff -N t/Bookseller.t
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ t/Bookseller.t 18 Jun 2007 01:34:50 -0000 1.1
@@ -0,0 +1,5 @@
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use C4::Bookseller;
+$loaded = 1;
+print "ok 1\n";
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] koha misc/testKoha.pl t/Biblio.t t/Bookfund.t t...,
Chris Cormack <=