From: rangi Date: Sun, 17 Jun 2007 23:44:04 +0000 (+0000) Subject: Simple compile only test for C4::Amazon X-Git-Tag: dev_week~195 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=3e275d12179c7e8f415189408fd88e3344657241;p=srvgit Simple compile only test for C4::Amazon Needs tests written for the 2 functions in it. --- diff --git a/misc/testKoha.pl b/misc/testKoha.pl index af8d22e981..03b2292a9f 100644 --- a/misc/testKoha.pl +++ b/misc/testKoha.pl @@ -28,6 +28,8 @@ use Test::Harness; my @tests=( 't/Accounts.t', + 't/Acquisition.t', + 't/Amazon.t', 't/format.t', 't/Input.t', 't/koha.t', @@ -42,6 +44,10 @@ runtests (@tests); exit; # $Log$ +# 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. +# # Revision 1.2 2007/06/17 23:35:36 rangi # Working on unit tests # diff --git a/t/Amazon.t b/t/Amazon.t new file mode 100644 index 0000000000..d07963a180 --- /dev/null +++ b/t/Amazon.t @@ -0,0 +1,7 @@ +# Basic compile test only at this stage, needs to be fleshed out + +BEGIN { $| = 1; print "1..1\n"; } +END {print "not ok 1\n" unless $loaded;} +use C4::Amazon; +$loaded = 1; +print "ok 1\n";