Regenerate test files
[gitmo/Mouse.git] / t / 010_basics / 005_override_augment_inner_super.t
index c7ae92a..ccad403 100644 (file)
@@ -1,10 +1,13 @@
 #!/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 => 5;
-
+use Test::More;
+$TODO = q{Mouse is not yet completed};
 
 
 {
@@ -65,9 +68,8 @@ Confusing I know, but it is correct :)
 
 =cut
 
-{
-    local $TODO = 'mixed augment/override is not supported';
-    is($baz->bar,
-        'Bar::bar -> Foo::bar(Baz::bar)',
-        '... got the right value from mixed augment/override bar');
-}
+is($baz->bar,
+    'Bar::bar -> Foo::bar(Baz::bar)',
+    '... got the right value from mixed augment/override bar');
+
+done_testing;