use code from lib insted of blib
authorDobrica Pavlinusic <dpavlin@rot13.org>
Tue, 28 Jul 2009 12:40:46 +0000 (12:40 +0000)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Tue, 28 Jul 2009 12:40:46 +0000 (12:40 +0000)
git-svn-id: svn+ssh://mjesec/home/dpavlin/svn/webpac2/trunk@1256 07558da8-63fa-0310-ba24-9fe276d99e06

33 files changed:
t/0-common.t
t/0-load.t
t/1-config.t
t/1-validate-delimiters.t
t/1-validate.t
t/2-input-dbf.t
t/2-input-ebsco.t
t/2-input-excel.t
t/2-input-gutenberg.t
t/2-input-isi.t
t/2-input-ovid.t
t/2-input-pdf.t
t/2-input-xml.t
t/2-input.t
t/2-parse.t
t/3-normalize-isbn.t
t/3-normalize-marc.t
t/3-normalize.t
t/4-store.t
t/5-output-couchdb.t
t/5-output-dbi.t
t/5-output-excel.t
t/5-output-jifty.t
t/5-output-json.t
t/5-output-kinosearch.t
t/5-output-sorted.t
t/5-output-swish.t
t/5-output-tt.t
t/5-output-webpacus.t
t/5-output.t
t/6-unit.t
t/7-est.t
t/pod-coverage.t

index da4f399..99e484b 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 7;
 
index fb70a3f..a253b36 100755 (executable)
@@ -3,7 +3,7 @@
 use strict;
 
 use Test::More tests => 13;
-use blib;
+use lib 'lib';
 use lib 'lib';
 
 BEGIN {
index 5cad917..914bcb5 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 28;
 
index 96b6b9e..780a157 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 15;
 
index 734d274..5c85050 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 56;
 
index 2bef47f..2d5226a 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More;
 
index e708165..f038243 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 63;
 
index eaced70..09f2314 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 75;
 
index 28ecdcd..857243d 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 300;
 
index 4dc3aca..c987749 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 12;
 
index b5e304f..afd2ccc 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 48;
 
index 84b5697..c09e241 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More;
 
index efba79e..ccc44f7 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 24;
 
index 1983bee..53ca2eb 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 124;
 
index 1c24231..23687c1 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 60;
 
index e66e71d..6e38d41 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 4;
 
index 4cf85cb..ea50575 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 330;
 
index 0eb6f2a..a0ebebe 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 355;
 
index 43629a0..5da1f6e 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 38;
 
index 196c9a4..0518644 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 9;
 
index 7c79fb8..b808aed 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 6;
 
index e6c8bb0..90ef843 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 22;
 
index aa8b0d4..a48ca12 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 8;
 
index 90e92ab..f53b2e5 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 14;
 
index 93754be..7f1618a 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 35;
 
index d9b2b61..4d8ee9e 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 16;
 
index f9e1bb9..2d3066c 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 35;
 
index a2b8d8a..5342e16 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 5;
 
index bc12cc5..3ef21e9 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 11;
 
index 7046c51..6ed5716 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use strict;
-use blib;
+use lib 'lib';
 
 use Test::More tests => 8;
 
index a9a6935..bc4b944 100755 (executable)
@@ -9,7 +9,7 @@ use File::Temp qw/tempdir/;
 use File::Slurp;
 use Data::Dump qw/dump/;
 use Time::HiRes qw/time/;
-use blib;
+use lib 'lib';
 
 my $debug = shift @ARGV;
 
index bc61623..2a74811 100755 (executable)
--- a/t/7-est.t
+++ b/t/7-est.t
@@ -7,7 +7,7 @@ use Test::Exception;
 use Cwd qw/abs_path/;
 use File::Temp qw/tempdir/;
 use Data::Dump;
-use blib;
+use lib 'lib';
 
 BEGIN {
 use_ok( 'WebPAC::Output::Estraier' );
index cebe435..48c9f69 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl -w
 
 use Test::More;
-use blib;
+use lib 'lib';
 
 eval "use Test::Pod::Coverage 1.04";
 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage [$@]" if ($@);