More test files
authorrangi <rangi>
Mon, 18 Jun 2007 01:34:50 +0000 (01:34 +0000)
committerrangi <rangi>
Mon, 18 Jun 2007 01:34:50 +0000 (01:34 +0000)
misc/testKoha.pl
t/Biblio.t [new file with mode: 0644]
t/Bookfund.t [new file with mode: 0644]
t/Bookseller.t [new file with mode: 0644]

index 862d5d2..9827d94 100644 (file)
@@ -34,6 +34,9 @@ my @tests=(
        '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 @@ runtests (@tests);
 exit;
 
 # $Log$
+# 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
 #
diff --git a/t/Biblio.t b/t/Biblio.t
new file mode 100644 (file)
index 0000000..2b2560a
--- /dev/null
@@ -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";
diff --git a/t/Bookfund.t b/t/Bookfund.t
new file mode 100644 (file)
index 0000000..1b7656b
--- /dev/null
@@ -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";
diff --git a/t/Bookseller.t b/t/Bookseller.t
new file mode 100644 (file)
index 0000000..a1d9a1a
--- /dev/null
@@ -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";