Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 020_attributes / 004_attribute_triggers.t
index e46e149..1d25f57 100644 (file)
@@ -1,7 +1,4 @@
 #!/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;
@@ -9,7 +6,6 @@ use warnings;
 use Scalar::Util 'isweak';
 
 use Test::More;
-$TODO = q{Mouse is not yet completed};
 use Test::Exception;
 
 
@@ -186,6 +182,9 @@ use Test::Exception;
 
     $attr->set_value( $foo, 3 );
 
+    note 'skip Moose specific features';
+    last;
+
     is_deeply(
         \@Foo::calls,
         [ [ $foo, 3, 2 ] ],
@@ -204,6 +203,9 @@ use Test::Exception;
 }
 
 {
+    note 'skip Moose specific features';
+    last;
+
     my $foo = Foo->new(foo => 2);
     is_deeply(
         \@Foo::calls,