Add MARC::Record 2.0.1 minimum test to settings-tester.pl
authorDan Scott <dscott@laurentian.ca>
Fri, 14 Oct 2011 02:25:04 +0000 (22:25 -0400)
committerDan Scott <dscott@laurentian.ca>
Fri, 14 Oct 2011 02:25:04 +0000 (22:25 -0400)
Wrap the use_ok() tests in a BEGIN block, per the recommendation of the
Test::More perldoc.

Signed-off-by: Dan Scott <dscott@laurentian.ca>
Open-ILS/src/support-scripts/settings-tester.pl

index 31be6ae..d76c682 100755 (executable)
@@ -2,13 +2,16 @@
 # vim:et:ts=4:
 use strict;
 use warnings;
-use Test::More tests => 4;
+use Test::More tests => 5;
 use Error qw(:try);
 
-use_ok( 'OpenSRF::Utils::Config' );
-use_ok( 'UNIVERSAL::require' );
-use_ok( 'Getopt::Long' );
-use_ok( 'Net::Domain' );
+BEGIN {
+    use_ok( 'OpenSRF::Utils::Config' );
+    use_ok( 'UNIVERSAL::require' );
+    use_ok( 'Getopt::Long' );
+    use_ok( 'MARC::Record', '2.0.1' );
+    use_ok( 'Net::Domain' );
+}
 
 my $output = '';
 my $perloutput = '';