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