Author: dagolden
Date: Wed Dec 16 02:29:55 2009
New Revision: 13662
Modified:
Module-Build/trunk/t/ppm.t
Log:
fix ppm.t skipping without Pod::Html
Modified: Module-Build/trunk/t/ppm.t
==============================================================================
--- Module-Build/trunk/t/ppm.t (original)
+++ Module-Build/trunk/t/ppm.t Wed Dec 16 02:29:55 2009
@@ -18,8 +18,8 @@
plan skip_all => 'No compiler found';
} elsif ( !$Config{usedl} ) {
plan skip_all => 'Perl not compiled for dynamic loading'
- } elsif ( ! eval {require Pod::HTML} ) {
- plan skip_all => "Pod::HTML not installed";
+ } elsif ( ! $HTML_support ) {
+ plan skip_all => "HTML support not installed";
} elsif ( ! eval {require Archive::Tar} ) {
plan skip_all => "Archive::Tar not installed to read archives.";
} elsif ( ! eval {IO::Zlib->VERSION(1.01)} ) {