diff options
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 ); -} - - |