Regenerate test files
[gitmo/Mouse.git] / t / 020_attributes / 016_attribute_traits_registered.t
old mode 100755 (executable)
new mode 100644 (file)
index 51640f9..c34cb4e
@@ -1,14 +1,17 @@
 #!/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 => 23;
+use Test::More;
+$TODO = q{Mouse is not yet completed};
 use Test::Exception;
 use Test::Mouse;
 
 
-
 {
     package My::Attribute::Trait;
     use Mouse::Role;
@@ -115,3 +118,4 @@ ok(!$derived_bar_attr->does('Fictional'), "attr->does returns false for nonexist
 can_ok($quux, 'additional_method');
 is(eval { $quux->additional_method }, 42, '... got the right value for additional_method');
 
+done_testing;