summaryrefslogtreecommitdiffstats
path: root/t/32-moosex-insideout.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-06-15 03:42:31 -0500
committerJesse Luehrs <doy@tozt.net>2010-06-15 03:42:31 -0500
commit5a5b351f6789989cf4f6033128a8cc2f711c795f (patch)
treede5b29a98946fb9ac9be5a1bd2fb280194687c26 /t/32-moosex-insideout.t
parentdfc2ff5f2709f198d9fdb21d84a2534acc9f3670 (diff)
downloadmoosex-nonmoose-5a5b351f6789989cf4f6033128a8cc2f711c795f.tar.gz
moosex-nonmoose-5a5b351f6789989cf4f6033128a8cc2f711c795f.zip
switch to done_testing in tests
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;