Subject: | Handling of type unions |
MooseX::Getopt does not handle type unions correctly.
See attached test case.
Cheers
Maroš
Subject: | fail.t |
#!/usr/bin/perl
use strict;
use warnings;
use Test::Most tests => 4;
{
package example;
use Moose;
use Moose::Util::TypeConstraints;
with qw(
MooseX::Getopt
);
subtype 'ResultSet'
=> as 'DBIx::Class::ResultSet';
subtype 'ResultList'
=> as 'ArrayRef[Int]';
# has no influence on test result
# MooseX::Getopt::OptionTypeMap->add_option_type_to_map(
# 'ResultList' => '=s',
# );
coerce 'ResultList'
=> from 'Str'
=> via {
return [ grep { m/^\d+$/ } split /\D/,$_ ]; # <- split string into arrayref
};
has 'results' => (
is => 'rw',
isa => 'ResultList | ResultSet', # <- union constraint
coerce => 1,
);
}
# Without MooseX::Getopt
{
my $example = example->new({
results => '1234,5678,9012',
});
isa_ok($example, 'example');
explain($example->results);
cmp_deeply($example->results, [qw(1234 5678 9012)], 'result as expected');
}
# With MooseX::Getopt
{
local @ARGV = ('--results','1234,5678,9012');
my $example = example->new_with_options;
isa_ok($example, 'example');
explain($example->results);
cmp_deeply($example->results, [qw(1234 5678 9012)], 'result as expected');
}