use
Moose::Util
qw/apply_all_roles add_method_modifier/
;
{
{
}
my
$test_object
= TestClass->new;
my
$exception
= exception {
apply_all_roles(
$test_object
);
};
like(
$exception
,
qr/\QMust specify at least one role to apply to $test_object/
,
"apply_all_roles takes an object and a role to apply"
);
isa_ok(
$exception
,
"Moose::Exception::MustSpecifyAtleastOneRoleToApplicant"
,
"apply_all_roles takes an object and a role to apply"
);
my
$test_class
= TestClass->meta;
$exception
= exception {
apply_all_roles(
$test_class
);
};
like(
$exception
,
qr/\QMust specify at least one role to apply to $test_class/
,
"apply_all_roles takes a class and a role to apply"
);
isa_ok(
$exception
,
"Moose::Exception::MustSpecifyAtleastOneRoleToApplicant"
,
"apply_all_roles takes a class and a role to apply"
);
{
}
my
$test_role
= TestRole->meta;
$exception
= exception {
apply_all_roles(
$test_role
);
};
like(
$exception
,
qr/\QMust specify at least one role to apply to $test_role/
,
"apply_all_roles takes a role and a role to apply"
);
isa_ok(
$exception
,
"Moose::Exception::MustSpecifyAtleastOneRoleToApplicant"
,
"apply_all_roles takes a role and a role to apply"
);
}
{
my
$exception
= exception {
};
like(
$exception
,
qr/You can only consume roles, Module::Runtime is not a Moose role/
,
"You can't consume a class"
);
isa_ok(
$exception
,
'Moose::Exception::CanOnlyConsumeRole'
,
"You can't consume a class"
);
$exception
= exception {
};
like(
$exception
,
qr!You can only consume roles, Not::A::Real::Package is not a Moose role!
,
"You can't consume a class which doesn't exist"
);
$exception
= exception {
with
sub
{};
};
like(
$exception
,
qr/argument is not a module name/
,
"You can only consume a module"
);
}
{
{
}
my
$exception
= exception {
add_method_modifier(Foo->meta,
"before"
, [{},
sub
{
"before"
;}]);
};
like(
$exception
,
qr/\QMethods passed to before must be provided as a list, arrayref or regex, not HASH/
,
"we gave a HashRef to before"
);
isa_ok(
$exception
,
"Moose::Exception::IllegalMethodTypeToAddMethodModifier"
,
"we gave a HashRef to before"
);
is(
ref
(
$exception
->params->[0] ),
"HASH"
,
"we gave a HashRef to before"
);
is(
$exception
->modifier_name,
'before'
,
"we gave a HashRef to before"
);
is(
$exception
->class_or_object->name,
"Foo"
,
"we gave a HashRef to before"
);
}
{
my
$exception
= exception {
has
'attr'
=> (
is
=>
'ro'
,
traits
=> [
qw( Xyz )
],
);
};
like(
$exception
,
qr/^Can't locate Moose::Meta::Attribute::Custom::Trait::Xyz or Xyz in \@INC \(\@INC contains:/
,
"Cannot locate 'Xyz'"
);
isa_ok(
$exception
,
"Moose::Exception::CannotLocatePackageInINC"
,
"Cannot locate 'Xyz'"
);
is(
$exception
->type,
"Attribute"
,
"Cannot locate 'Xyz'"
);
is(
$exception
->possible_packages,
'Moose::Meta::Attribute::Custom::Trait::Xyz or Xyz'
,
"Cannot locate 'Xyz'"
);
is(
$exception
->metaclass_name,
"Xyz"
,
"Cannot locate 'Xyz'"
);
}
done_testing;