Fix a typo
[gitmo/Mouse.git] / t / 020_attributes / 017_attribute_traits_n_meta.t
old mode 100755 (executable)
new mode 100644 (file)
index 253a345..5ffd186
@@ -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 => 7;
+use Test::More;
 use Test::Exception;
-
-use lib 't/lib';
 use Test::Mouse;
 
+
+
 {
     package My::Meta::Attribute::DefaultReadOnly;
     use Mouse;
@@ -63,6 +66,4 @@ isa_ok($c->meta->get_attribute('bar'), 'My::Meta::Attribute::DefaultReadOnly');
 does_ok($c->meta->get_attribute('bar'), 'My::Attribute::Trait');
 is($c->meta->get_attribute('bar')->_is_metadata, 'ro', '... got the right metaclass customization');
 
-
-
-
+done_testing;