r1573@llin: dpavlin | 2007-11-08 18:29:03 +0100
[webpac2] / t / 6-unit.t
index 6e226b3..ab27783 100755 (executable)
@@ -7,7 +7,7 @@ use Test::Exception;
 use Cwd qw/abs_path/;
 use File::Temp qw/tempdir/;
 use File::Slurp;
-use Data::Dumper;
+use Data::Dump qw/dump/;
 use Time::HiRes qw/time/;
 use blib;
 
@@ -56,10 +56,9 @@ ok(my $maxmfn = $isis->open(
 
 ok(my $path = tempdir( CLEANUP => 1 ), "path");
 
-ok(my $db = new WebPAC::Store(
-       path => $path,
+ok(my $db = new WebPAC::Store({
        database => '.',
-), "new Store");
+}), "new Store");
 
 ok(my $norm_pl = read_file( $normalize_set_pl ), "set definitions: $normalize_set_pl" );
 
@@ -74,7 +73,7 @@ foreach my $pos ( 0 ... $isis->size ) {
 
        my $row = $isis->fetch || next;
 
-       diag " row $pos => ",Dumper($row) if ($debug);
+       diag " row $pos => ",dump($row) if ($debug);
 
        my $t = time();
        ok( my $ds = WebPAC::Normalize::data_structure(
@@ -83,7 +82,7 @@ foreach my $pos ( 0 ... $isis->size ) {
        ), "Set data_structure");
        $t_norm += time() - $t;
 
-       diag " ds $pos => ",Dumper($ds) if ($debug);
+       diag " ds $pos => ",dump($ds) if ($debug);
 
        ok(my $html = $out->apply(
                template => 'html.tt',