From 07b3e3c952484562bd9097a140ce9d6d218b51aa Mon Sep 17 00:00:00 2001 From: rangi Date: Mon, 18 Jun 2007 00:51:10 +0000 Subject: [PATCH] Continuing to add tests --- misc/testKoha.pl | 7 +++++++ t/Auth.t | 5 +++++ t/Auth_with_ldap.t | 5 +++++ t/AuthoritesMarc.t | 5 +++++ t/Barcodes_PrinterConfig.t | 5 +++++ 5 files changed, 27 insertions(+) create mode 100644 t/Auth.t create mode 100644 t/Auth_with_ldap.t create mode 100644 t/AuthoritesMarc.t create mode 100644 t/Barcodes_PrinterConfig.t diff --git a/misc/testKoha.pl b/misc/testKoha.pl index 03b2292a9f..862d5d206e 100644 --- a/misc/testKoha.pl +++ b/misc/testKoha.pl @@ -30,6 +30,10 @@ my @tests=( 't/Accounts.t', 't/Acquisition.t', 't/Amazon.t', + 't/AuthoritiesMarc.t', + 't/Auth.t', + 't/Auth_with_ldap.t', + 't/Barcodes_PrinterConfig.t', 't/format.t', 't/Input.t', 't/koha.t', @@ -44,6 +48,9 @@ runtests (@tests); exit; # $Log$ +# Revision 1.4 2007/06/18 00:51:10 rangi +# Continuing to add tests +# # Revision 1.3 2007/06/17 23:44:04 rangi # Simple compile only test for C4::Amazon # Needs tests written for the 2 functions in it. diff --git a/t/Auth.t b/t/Auth.t new file mode 100644 index 0000000000..f1ade32ee3 --- /dev/null +++ b/t/Auth.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n"; } +END {print "not ok 1\n" unless $loaded;} +use C4::Auth; +$loaded = 1; +print "ok 1\n"; diff --git a/t/Auth_with_ldap.t b/t/Auth_with_ldap.t new file mode 100644 index 0000000000..5888ca9eab --- /dev/null +++ b/t/Auth_with_ldap.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n"; } +END {print "not ok 1\n" unless $loaded;} +use C4::Auth_with_ldap; +$loaded = 1; +print "ok 1\n"; diff --git a/t/AuthoritesMarc.t b/t/AuthoritesMarc.t new file mode 100644 index 0000000000..a29a82e094 --- /dev/null +++ b/t/AuthoritesMarc.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n"; } +END {print "not ok 1\n" unless $loaded;} +use C4::AuthoritiesMarc; +$loaded = 1; +print "ok 1\n"; diff --git a/t/Barcodes_PrinterConfig.t b/t/Barcodes_PrinterConfig.t new file mode 100644 index 0000000000..33ba55ceef --- /dev/null +++ b/t/Barcodes_PrinterConfig.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n"; } +END {print "not ok 1\n" unless $loaded;} +use C4::Barcodes::PrinterConfig; +$loaded = 1; +print "ok 1\n"; -- 2.20.1