Make API docs look like other modules
[gitmo/Moose.git] / t / 050_metaclasses / 010_extending_and_embedding_back_compat.t
index 6ec3a5a..e54fe03 100644 (file)
@@ -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;