From 7fde3c017402a0cac4379e08636f0987c91ed060 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Thu, 23 Jun 2005 11:30:16 +0000 Subject: Remove test that relies on Test::POD p4raw-id: //depot/perl@24955 --- MANIFEST | 1 - lib/Archive/Tar/t/99_pod.t | 18 ------------------ 2 files changed, 19 deletions(-) delete mode 100644 lib/Archive/Tar/t/99_pod.t diff --git a/MANIFEST b/MANIFEST index 54c0f91c8d..0d8180417e 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 8e4084c680..0000000000 --- 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 ); -} - - -- cgit v1.2.1