From ccc8db346df4b6993aff09d4f79eaf92978c767a Mon Sep 17 00:00:00 2001 From: rangi Date: Mon, 18 Jun 2007 01:34:50 +0000 Subject: [PATCH] More test files --- misc/testKoha.pl | 6 ++++++ t/Biblio.t | 5 +++++ t/Bookfund.t | 5 +++++ t/Bookseller.t | 5 +++++ 4 files changed, 21 insertions(+) create mode 100644 t/Biblio.t create mode 100644 t/Bookfund.t create mode 100644 t/Bookseller.t diff --git a/misc/testKoha.pl b/misc/testKoha.pl index 862d5d206e..9827d94b75 100644 --- a/misc/testKoha.pl +++ b/misc/testKoha.pl @@ -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 index 0000000000..2b2560a5c6 --- /dev/null +++ b/t/Biblio.t @@ -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 index 0000000000..1b7656b436 --- /dev/null +++ b/t/Bookfund.t @@ -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 index 0000000000..a1d9a1a083 --- /dev/null +++ b/t/Bookseller.t @@ -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"; -- 2.39.5