summaryrefslogtreecommitdiffstats
path: root/t/32-moosex-insideout.t
diff options
context:
space:
mode:
Diffstat (limited to 't/32-moosex-insideout.t')
-rw-r--r--t/32-moosex-insideout.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/32-moosex-insideout.t b/t/32-moosex-insideout.t
index ae31359..88283b0 100644
--- a/t/32-moosex-insideout.t
+++ b/t/32-moosex-insideout.t
@@ -6,7 +6,6 @@ use Test::Moose;
BEGIN {
eval "use MooseX::InsideOut 0.100 ()";
plan skip_all => "MooseX::InsideOut is required for this test" if $@;
- plan tests => 10;
}
BEGIN {
@@ -76,3 +75,5 @@ with_immutable {
my $sub_foo = eval { Foo::Moose::Sub->new(FOO => bar => 'AHOY') };
is(eval { $sub_foo->bar }, 'AHOY', 'subclass constructor works');
} 'Foo::Moose';
+
+done_testing;