Browse Source

More test files

3.0.x
rangi 17 years ago
parent
commit
ccc8db346d
  1. 6
      misc/testKoha.pl
  2. 5
      t/Biblio.t
  3. 5
      t/Bookfund.t
  4. 5
      t/Bookseller.t

6
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
#

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

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

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