X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t-failing%2F050_metaclasses%2F010_extending_and_embedding_back_compat.t;fp=t%2F050_metaclasses%2Ffailing%2F010_extending_and_embedding_back_compat.t;h=4a49b1af3b4e4bd39507fe536e5b857e857a2479;hb=fde8e43f95fe996fbc2a778aa259feeb04552171;hp=d1e05d532c8b070eea0d56ea2da9a05e8182bf52;hpb=0bdc9d38dfd3de07aad929f6629f8fa65d434c27;p=gitmo%2FMouse.git diff --git a/t/050_metaclasses/failing/010_extending_and_embedding_back_compat.t b/t-failing/050_metaclasses/010_extending_and_embedding_back_compat.t similarity index 78% rename from t/050_metaclasses/failing/010_extending_and_embedding_back_compat.t rename to t-failing/050_metaclasses/010_extending_and_embedding_back_compat.t index d1e05d5..4a49b1a 100644 --- a/t/050_metaclasses/failing/010_extending_and_embedding_back_compat.t +++ b/t-failing/050_metaclasses/010_extending_and_embedding_back_compat.t @@ -1,13 +1,16 @@ #!/usr/bin/perl +# This is automatically generated by author/import-moose-test.pl. +# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!! +use t::lib::MooseCompat; use strict; use warnings; -use Test::More tests => 7; +use Test::More; +$TODO = q{Mouse is not yet completed}; use Test::Exception; - BEGIN { package MyFramework::Base; use Mouse; @@ -19,6 +22,7 @@ BEGIN { package MyFramework; use Mouse; + use Mouse::Deprecated -api_version => '0.55'; sub import { my $CALLER = caller(); @@ -53,6 +57,4 @@ isa_ok($obj, 'Mouse::Object'); is($obj->foo, 10, '... got the right value'); - - - +done_testing;