X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F050_metaclasses%2F010_extending_and_embedding_back_compat.t;h=e54fe03024a57be5d407a4f0e2dd20bc593a21f4;hb=ad3882b59692e4e4eab99f9b183c941e6f63d3bd;hp=6ec3a5a28810c60645fb9b183a6f574806c2e0c8;hpb=d03bd989b97597428b460d7f9a021e2931893fa0;p=gitmo%2FMoose.git diff --git a/t/050_metaclasses/010_extending_and_embedding_back_compat.t b/t/050_metaclasses/010_extending_and_embedding_back_compat.t index 6ec3a5a..e54fe03 100644 --- a/t/050_metaclasses/010_extending_and_embedding_back_compat.t +++ b/t/050_metaclasses/010_extending_and_embedding_back_compat.t @@ -3,11 +3,10 @@ use strict; use warnings; -use Test::More tests => 7; +use Test::More; use Test::Exception; - BEGIN { package MyFramework::Base; use Moose; @@ -19,6 +18,7 @@ BEGIN { package MyFramework; use Moose; + use Moose::Deprecated -api_version => '0.55'; sub import { my $CALLER = caller(); @@ -53,6 +53,4 @@ isa_ok($obj, 'Moose::Object'); is($obj->foo, 10, '... got the right value'); - - - +done_testing;