summaryrefslogtreecommitdiffstats
path: root/t/20-inheritance.t
diff options
context:
space:
mode:
Diffstat (limited to 't/20-inheritance.t')
-rw-r--r--t/20-inheritance.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/20-inheritance.t b/t/20-inheritance.t
index b5e7b67..2324673 100644
--- a/t/20-inheritance.t
+++ b/t/20-inheritance.t
@@ -2,6 +2,7 @@
use strict;
use warnings;
use Test::More;
+use Test::Moose;
{
package Parent;
@@ -52,6 +53,7 @@ use Test::More;
);
}
+with_immutable {
{
my $parent = Parent->new;
ok($parent->has_service('foo'), "parent has foo");
@@ -116,5 +118,6 @@ use Test::More;
is($child->baz, 'ZAB');
is($child->quux, 'OOFOOFBARZABQUUX');
}
+} 'Parent', 'Child';
done_testing;