Revision history for Perl extension MooseX-Getopt
+0.07
+ * MooseX::Getopt::Meta::Attribute::NoGetopt
+ - fixed miscapitalization of NoGetopt in the docs
+
0.06 Fri. Nov. 23, 2007
* MooseX::Getopt
- refactored &new_with_option some so that
-MooseX::Getopt version 0.06
+MooseX::Getopt version 0.07
===========================
See the individual module documentation for more information
use MooseX::Getopt::Meta::Attribute;
use MooseX::Getopt::Meta::Attribute::NoGetopt;
-our $VERSION = '0.06';
+our $VERSION = '0.07';
our $AUTHORITY = 'cpan:STEVAN';
has ARGV => (is => 'rw', isa => 'ArrayRef');
no Moose;
# register this as a metaclass alias ...
-package Moose::Meta::Attribute::Custom::Getopt;
+package # stop confusing PAUSE
+ Moose::Meta::Attribute::Custom::Getopt;
sub register_implementation { 'MooseX::Getopt::Meta::Attribute' }
1;
no Moose;
# register this as a metaclass alias ...
-package Moose::Meta::Attribute::Custom::NoGetopt;
+package # stop confusing PAUSE
+ Moose::Meta::Attribute::Custom::NoGetopt;
sub register_implementation { 'MooseX::Getopt::Meta::Attribute::NoGetopt' }
1;
=head1 NAME
-MooseX::Getopt::Meta::Attribute::NoGetOpt - Optional meta attribute for ignoring params
+MooseX::Getopt::Meta::Attribute::NoGetopt - Optional meta attribute for ignoring params
=head1 SYNOPSIS
with 'MooseX::Getopt';
has 'data' => (
- metaclass => 'NoGetOpt', # do not attempt to capture this param
+ metaclass => 'NoGetopt', # do not attempt to capture this param
is => 'ro',
isa => 'Str',
default => 'file.dat',
This is a custom attribute metaclass which can be used to specify
that a specific attribute should B<not> be processed by
-C<MooseX::Getopt>. All you need to do is specify the C<NoGetOpt>
+C<MooseX::Getopt>. All you need to do is specify the C<NoGetopt>
metaclass.
has 'foo' => (metaclass => 'NoGetopt', ... );
use strict;
use warnings;
-use Test::More tests => 9;
+use Test::More tests => 10;
use Test::Exception;
BEGIN {
throws_ok { App->new_with_options } qr/Unknown option: private_stuff/;
}
+
+{
+ local @ARGV = (qw/--length 100/);
+
+ throws_ok { App->new_with_options } qr/Unknown option: length/;
+}
+