summaryrefslogtreecommitdiffstats
path: root/t/22-more-inheritance.t
diff options
context:
space:
mode:
Diffstat (limited to 't/22-more-inheritance.t')
-rw-r--r--t/22-more-inheritance.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/22-more-inheritance.t b/t/22-more-inheritance.t
index d13639b..94d726c 100644
--- a/t/22-more-inheritance.t
+++ b/t/22-more-inheritance.t
@@ -2,6 +2,7 @@
use strict;
use warnings;
use Test::More;
+use Test::Moose;
{
package Parent;
@@ -75,6 +76,7 @@ use Test::More;
);
}
+with_immutable {
{
my $obj = Parent->new;
is($obj->foo, 'parent');
@@ -98,5 +100,6 @@ use Test::More;
is($obj->foo, 'child');
is($obj->bar, 'child child');
}
+} 'Parent', 'Child1', 'Child2', 'Child3';
done_testing;