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