our
$VERSION
=
'0.01'
;
our
$AUTHORITY
=
'cpan:BERLE'
;
sub
planned { 24 }
sub
test {
my
(
$self
,
$class
) =
@_
;
{
my
$parameter
=
$class
->new;
isa_ok (
$parameter
,
$class
);
does_ok (
$parameter
,
'MooseX::Meta::Parameter'
);
is (
$parameter
->validate (42),42);
ok (!
$parameter
->validate);
}
{
my
$parameter
=
$class
->new (
required
=> 1);
throws_ok {
$parameter
->validate }
qr/Must be specified/
;
}
{
my
$parameter
=
$class
->new (
isa
=>
'Int'
);
is (
$parameter
->validate (42),42);
throws_ok {
$parameter
->validate (
'Foo'
) }
qr/Argument isn't/
;
}
{
my
$parameter
=
$class
->new (
isa
=> subtype (
'Int'
,where {
$_
< 5 }));
throws_ok {
$parameter
->validate (42) }
qr/Argument isn't/
;
}
throws_ok {
$class
->new (
isa
=>
bless
({},
'Foo'
)) }
qr/You cannot specify an object as type/
;
{
my
$parameter
=
$class
->new (
isa
=>
'Foo'
);
throws_ok {
$parameter
->validate (42) }
qr/Argument isn't/
;
ok (
ref
$parameter
->validate (
bless
({},
'Foo'
)) eq
'Foo'
);
}
{
my
$parameter
=
$class
->new (
isa
=>
'Int | ArrayRef'
);
throws_ok {
$parameter
->validate (
'Foo'
) }
qr/Argument isn't/
;
is (
$parameter
->validate (42),42);
is_deeply (
$parameter
->validate ([42]),[42]);
}
{
my
$parameter
=
$class
->new (
default
=> 42);
is (
$parameter
->validate,42);
}
{
my
$parameter
=
$class
->new (
default
=>
sub
{ 42 });
is (
$parameter
->validate,42);
}
subtype
'SmallInt'
=> as
'Int'
=> where {
$_
< 10 };
coerce
'SmallInt'
=> from
'Int'
=> via { 5 };
throws_ok {
$class
->new (
coerce
=> 1) }
qr/does not support this/
;
throws_ok {
$class
->new (
isa
=>
'Int'
,
coerce
=> 1) }
qr/does not support this/
;
{
my
$parameter
=
$class
->new (
isa
=>
'SmallInt'
,
coerce
=> 1);
throws_ok {
$parameter
->validate (
'Foo'
) }
qr/Argument isn't/
;
is (
$parameter
->validate (42,1),5);
}
{
}
{
sub
new {
bless
{},
$_
[0] }
}
{
}
{
}
{
my
$parameter
=
$class
->new (
does
=>
'Foo::Role'
);
throws_ok {
$parameter
->validate (
'Foo'
) }
qr/Does not do/
;
throws_ok {
$parameter
->validate (Foo1->new) }
qr/Does not do/
;
throws_ok {
$parameter
->validate (Foo2->new) }
qr/Does not do/
;
lives_ok {
$parameter
->validate (Foo3->new) };
}
return
;
}
1;