Revision history for Perl extension MooseX-Getopt
+0.16 Tue. February 17 2009
+ * t/
+ - run pod tests only if RELEASE_TESTING env var is set
+
0.15 Sat. July 26 2008
* MooseX::Getopt::OptionTypeMap
- Accept type constraint objects in the type mapping, not just names
use Getopt::Long (); # GLD uses it anyway, doesn't hurt
use constant HAVE_GLD => not not eval { require Getopt::Long::Descriptive };
-our $VERSION = '0.15';
+our $VERSION = '0.16';
our $AUTHORITY = 'cpan:STEVAN';
has ARGV => (is => 'rw', isa => 'ArrayRef', metaclass => "NoGetopt");
use warnings;
use Test::More;
+plan skip_all => 'set RELEASE_TESTING to run these tests'
+ unless $ENV{RELEASE_TESTING};
eval "use Test::Pod 1.14";
plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
use warnings;
use Test::More;
+plan skip_all => 'set RELEASE_TESTING to run these tests'
+ unless $ENV{RELEASE_TESTING};
eval "use Test::Pod::Coverage 1.04";
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;