r1650@llin: dpavlin | 2007-11-20 11:07:57 +0100
[webpac2] / t / 2-input-excel.t
index 9b091d3..da57366 100755 (executable)
@@ -1,30 +1,22 @@
 #!/usr/bin/perl -w
 
-use Test::More tests => 45;
-use Test::Exception;
-use Cwd qw/abs_path/;
-use blib;
 use strict;
+use blib;
 
-use Data::Dump qw/dump/;
-
-my $debug = 1;
+use Test::More tests => 45;
 
 BEGIN {
+use_ok( 'WebPAC::Test' );
 use_ok( 'WebPAC::Input' );
 }
 
-ok(my $abs_path = abs_path($0), "abs_path");
-$abs_path =~ s#/[^/]*$#/#;
-
 my $module = 'WebPAC::Input::Excel';
 diag "testing with $module";
 
 ok(my $input = new WebPAC::Input(
        module => $module,
-       no_log => 0,
        no_progress_bar => 1,
-       debug => $debug,
+       %LOG,
 ), "new");
 
 ok(my $db = $input->open(
@@ -42,6 +34,6 @@ foreach my $mfn ( 1 ... $size ) {
 
        cmp_ok($input->pos, '==', $mfn, "pos $mfn");
 
-       diag "rec: ", dump($rec), "\n";
+       diag "rec: ", dump($rec), "\n" if $debug;
 }