1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
use strict;
use warnings;
use Test::More;
use Test::Fatal;
use Moose();
{
my $exception = exception {
package Foo;
use Moose;
__PACKAGE__->meta->make_immutable;
__PACKAGE__->meta->superclasses("Bar");
};
like(
$exception,
qr/The 'superclasses' method is read-only when called on an immutable instance/,
"calling 'foo' on an immutable instance");
isa_ok(
$exception,
"Moose::Exception::CallingReadOnlyMethodOnAnImmutableInstance",
"calling 'foo' on an immutable instance");
is(
$exception->method_name,
"superclasses",
"calling 'foo' on an immutable instance");
}
{
my $exception = exception {
package Foo;
use Moose;
__PACKAGE__->meta->make_immutable;
__PACKAGE__->meta->add_method( foo => sub { "foo" } );
};
like(
$exception,
qr/The 'add_method' method cannot be called on an immutable instance/,
"calling 'add_method' on an immutable instance");
isa_ok(
$exception,
"Moose::Exception::CallingMethodOnAnImmutableInstance",
"calling 'add_method' on an immutable instance");
is(
$exception->method_name,
"add_method",
"calling 'add_method' on an immutable instance");
}
done_testing;
|