Author: dagolden
Date: Tue Jun 16 08:53:54 2009
New Revision: 12850
Modified:
Module-Build/trunk/lib/Module/Build/Base.pm
Log:
hide internal M::B::PodTester package from PAUSE
Modified: Module-Build/trunk/lib/Module/Build/Base.pm
==============================================================================
--- Module-Build/trunk/lib/Module/Build/Base.pm (original)
+++ Module-Build/trunk/lib/Module/Build/Base.pm Tue Jun 16 08:53:54 2009
@@ -2617,7 +2617,8 @@
exclude => [ file_qr('\.bat$') ])}
or die "Couldn't find any POD files to test\n";
- { package Module::Build::PodTester; # Don't want to pollute the main
namespace
+ { package # hide from PAUSE
+ Module::Build::PodTester; # Don't want to pollute the main namespace
Test::Pod->import( tests => scalar @files );
pod_file_ok($_) foreach @files;
}