diff options
author | Jerry D. Hedden <jdhedden@cpan.org> | 2007-06-20 05:43:27 -0400 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-06-21 08:24:26 +0000 |
commit | 9286624c11ad2b83ad580c9203c2063f03c06a9b (patch) | |
tree | 6a3a9751853ac5b43f231a24359f57e6bf8bdc65 /lib | |
parent | 8915552c55880ade8ca834007e345e2527cd1a4c (diff) | |
download | perl-9286624c11ad2b83ad580c9203c2063f03c06a9b.tar.gz |
Remove Archive::Test POD check
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510706200643s50cb5028ted455f52497f6af5@mail.gmail.com>
p4raw-id: //depot/perl@31437
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Archive/Tar/t/99_pod.t | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/Archive/Tar/t/99_pod.t b/lib/Archive/Tar/t/99_pod.t deleted file mode 100644 index 02190fecbc..0000000000 --- a/lib/Archive/Tar/t/99_pod.t +++ /dev/null @@ -1,22 +0,0 @@ -use Test::More; -use File::Spec; -use File::Find; -use strict; - -BEGIN { chdir 't' if -d 't' }; - -eval 'use Test::Pod'; -plan skip_all => "Test::Pod v0.95 required for testing POD" - if $@ || $Test::Pod::VERSION < 0.95; - -my @files; -find( sub { push @files, File::Spec->catfile( - File::Spec->splitdir( $File::Find::dir ), $_ - ) if /\.p(?:l|m|od)$/ }, File::Spec->catdir(qw(.. blib lib) )); - -plan tests => scalar @files; -for my $file ( @files ) { - pod_file_ok( $file ); -} - - |