From: Dan Scott Date: Wed, 4 Jan 2012 04:30:19 +0000 (-0500) Subject: Add tests for TPAC Perl modules X-Git-Tag: sprint4-merge-nov22~4570 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c4fd05e1951fb5a83d51287cf0cd2adf04ff43fb;p=working%2FEvergreen.git Add tests for TPAC Perl modules Just basic tests, but they should catch syntax problems at least. Signed-off-by: Dan Scott Signed-off-by: Mike Rylander --- diff --git a/Open-ILS/src/perlmods/t/19-OpenILS-WWW-EGCatLoader.t b/Open-ILS/src/perlmods/t/19-OpenILS-WWW-EGCatLoader.t new file mode 100644 index 0000000000..dc57400ea8 --- /dev/null +++ b/Open-ILS/src/perlmods/t/19-OpenILS-WWW-EGCatLoader.t @@ -0,0 +1,12 @@ +#!perl -T + +use Test::More tests => 6; + +BEGIN { + use_ok( 'OpenILS::WWW::EGCatLoader' ); +} +use_ok( 'OpenILS::WWW::EGCatLoader::Account' ); +use_ok( 'OpenILS::WWW::EGCatLoader::Container' ); +use_ok( 'OpenILS::WWW::EGCatLoader::Record' ); +use_ok( 'OpenILS::WWW::EGCatLoader::Search' ); +use_ok( 'OpenILS::WWW::EGCatLoader::Util' );