X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fde-dup.t;h=56b508ccb1b1cfa8d69c97a70678554574fb7397;hb=f22d40d72d57fdc8783274558f138cc1189d8be5;hp=fdc325b53731f953c7601ff01eea0f72b02a6fe4;hpb=a9489cb038b7412d3f5c3f7c4cc18d2701b9a5e2;p=p5sagit%2Flocal-lib.git diff --git a/t/de-dup.t b/t/de-dup.t index fdc325b..56b508c 100644 --- a/t/de-dup.t +++ b/t/de-dup.t @@ -1,11 +1,10 @@ use strict; use warnings; -use Test::More; +use Test::More tests => 2; + use File::Temp qw(tempdir); use Cwd; -plan tests => 4; - my $dir = tempdir('test_local_lib-XXXXX', DIR => Cwd::abs_path('t'), CLEANUP => 1); use local::lib (); @@ -17,18 +16,5 @@ local::lib->import($dir); map { $inc{$_}++ } @INC; map { $perl5lib{$_} } split /:/, $ENV{PERL5LIB}; ok ! grep({ $inc{$_} > 1 } keys %inc), '@INC entries not duplicated'; -use Data::Dumper; -warn Dumper(\@INC); ok ! grep({ $perl5lib{$_} > 1 } keys %perl5lib), 'ENV{PERL5LIB} entries not duplicated'; } - -local::lib->import('--self-contained', $dir); - -{ - my (%inc, %perl5lib); - map { $inc{$_}++ } @INC; - map { $perl5lib{$_} } split /:/, $ENV{PERL5LIB}; - ok ! grep({ $inc{$_} > 1 } keys %inc), '@INC entries not duplicated (--self-contained)'; - ok ! grep({ $perl5lib{$_} > 1 } keys %perl5lib), 'ENV{PERL5LIB} entries not duplicated (--self-contained)'; -} -