From: Rafael Garcia-Suarez Date: Thu, 23 Jun 2005 11:30:16 +0000 (+0000) Subject: Remove test that relies on Test::POD X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7fde3c017402a0cac4379e08636f0987c91ed060;p=p5sagit%2Fp5-mst-13.2.git Remove test that relies on Test::POD p4raw-id: //depot/perl@24955 --- diff --git a/MANIFEST b/MANIFEST index 54c0f91..0d81804 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1188,7 +1188,6 @@ lib/Archive/Tar/t/00_setup.t Archive::Tar test setup lib/Archive/Tar/t/01_use.t Archive::Tar tests lib/Archive/Tar/t/02_methods.t Archive::Tar tests lib/Archive/Tar/t/03_file.t Archive::Tar tests -lib/Archive/Tar/t/99_pod.t Archive::Tar tests lib/Archive/Tar/t/src/long/b Archive::Tar tests lib/Archive/Tar/t/src/short/b Archive::Tar tests lib/Archive/Tar.pm Archive::Tar diff --git a/lib/Archive/Tar/t/99_pod.t b/lib/Archive/Tar/t/99_pod.t deleted file mode 100644 index 8e4084c..0000000 --- a/lib/Archive/Tar/t/99_pod.t +++ /dev/null @@ -1,18 +0,0 @@ -use Test::More; -use File::Spec; -use File::Find; -use strict; - -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::Find::name if /\.p(?:l|m|od)$/ }, - File::Spec->catfile( qw(blib lib) ) ); -plan tests => scalar @files; -for my $file ( @files ) { - pod_file_ok( $file ); -} - -