Regenerate test files
[gitmo/Mouse.git] / 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;