{
my
$exception
= exception {
Moose->throw_error(
"Hello, I am an exception object"
);
};
like(
$exception
,
qr/Hello, I am an exception object/
,
"throw_error stringifies to the message"
);
isa_ok(
$exception
,
'Moose::Exception::Legacy'
,
"exception"
);
}
{
my
$exception
= exception {
Moose->throw_error(
"Hello, "
,
"I am an "
,
"exception object"
);
};
like(
$exception
,
qr/Hello, I am an exception object/
,
"throw_error stringifies to the full message"
);
isa_ok(
$exception
,
'Moose::Exception::Legacy'
,
"exception"
);
}
{
BEGIN
{
{
sub
xyz {
print
"In xyz method"
;
}
}
{
sub
_inline_check_required_attr {
my
$self
=
shift
;
my
(
$attr
) =
@_
;
return
unless
defined
$attr
->init_arg;
return
unless
$attr
->can(
'is_required'
) &&
$attr
->is_required;
return
if
$attr
->has_default ||
$attr
->has_builder;
return
(
'if (!exists $params->{\''
.
$attr
->init_arg .
'\'}) {'
,
$self
->_inline_throw_error(
'Legacy => '
.
'message => "An inline error" '
).
';'
,
'}'
,
);
}
}
}
};
{
{
use
Moose
-metaclass
=>
'FooMetaclass'
;
has
'baz'
=> (
is
=>
'ro'
,
isa
=>
'Int'
,
required
=> 1,
);
__PACKAGE__->meta->make_immutable;
}
my
$exception
= exception {
my
$test1
= Foo2->new;
};
like(
$exception
,
qr/An inline error/
,
"_inline_throw_error stringifies to the message"
);
isa_ok(
$exception
,
'Moose::Exception::Legacy'
,
"_inline_throw_error stringifies to the message"
);
}
done_testing();