Add tests for TPAC Perl modules
authorDan Scott <dscott@laurentian.ca>
Wed, 4 Jan 2012 04:30:19 +0000 (23:30 -0500)
committerDan Scott <dscott@laurentian.ca>
Sun, 4 Mar 2012 05:40:23 +0000 (00:40 -0500)
Just basic tests, but they should catch syntax problems at least.

Signed-off-by: Dan Scott <dscott@laurentian.ca>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/src/perlmods/t/19-OpenILS-WWW-EGCatLoader.t [new file with mode: 0644]

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 (file)
index 0000000..dc57400
--- /dev/null
@@ -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' );