Codebase list libfile-sharedir-install-perl / 0417444
Imported Upstream version 0.09 gregor herrmann 9 years ago
6 changed file(s) with 13 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
00 Revision history for Perl extension File::ShareDir::Install.
11
2 0.08 Jan 29 2015
2 0.09 Jul 7 2014
3 - Get rid of DB::single
4 Thank you djerius@cpan.org
5 - Don't do POD tests
6
7 0.08 Jan 29 2014
38 - Tests may now be run in parallel
49 Thank you KENTNL@cpan.org
510
3838 }
3939 },
4040 "release_status" : "stable",
41 "version" : "0.08"
41 "version" : "0.09"
4242 }
2020 ExtUtils::MakeMaker: 6.11
2121 File::Spec: 0
2222 IO::Dir: 0
23 version: 0.08
23 version: 0.09
88 use File::Spec;
99 use IO::Dir;
1010
11 our $VERSION = '0.08';
11 our $VERSION = '0.09';
1212
1313 our @DIRS;
1414 our %ALREADY;
133133
134134 my $dir = $def->{dir};
135135
136 $DB::single = 1;
137136 my( $idir );
138137
139138 if( $def->{type} eq 'delete-dist' ) {
33 use warnings;
44
55 use Test::More;
6 plan skip_all => 'these tests are for authors only' unless
7 $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};
68 eval "use Test::Pod 1.00";
79 plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
810
33 use warnings;
44
55 use Test::More;
6 plan skip_all => 'these tests are for authors only' unless
7 $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};
68 eval "use Test::Pod::Coverage 1.00";
79 plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
810