Browse Source

Continuing to add tests

3.0.x
rangi 17 years ago
parent
commit
07b3e3c952
  1. 7
      misc/testKoha.pl
  2. 5
      t/Auth.t
  3. 5
      t/Auth_with_ldap.t
  4. 5
      t/AuthoritesMarc.t
  5. 5
      t/Barcodes_PrinterConfig.t

7
misc/testKoha.pl

@ -30,6 +30,10 @@ my @tests=(
't/Accounts.t', 't/Accounts.t',
't/Acquisition.t', 't/Acquisition.t',
't/Amazon.t', 't/Amazon.t',
't/AuthoritiesMarc.t',
't/Auth.t',
't/Auth_with_ldap.t',
't/Barcodes_PrinterConfig.t',
't/format.t', 't/format.t',
't/Input.t', 't/Input.t',
't/koha.t', 't/koha.t',
@ -44,6 +48,9 @@ runtests (@tests);
exit; exit;
# $Log$ # $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 # Revision 1.3 2007/06/17 23:44:04 rangi
# Simple compile only test for C4::Amazon # Simple compile only test for C4::Amazon
# Needs tests written for the 2 functions in it. # Needs tests written for the 2 functions in it.

5
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";

5
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";

5
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";

5
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";
Loading…
Cancel
Save