Reorganize t/020_attributes/
[gitmo/Mouse.git] / t / 020_attributes / 017_attribute_traits_n_meta.t
index 4d96e6c..5ffd186 100644 (file)
@@ -1,11 +1,12 @@
 #!/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 lib 't/lib';
-
-use Test::More tests => 7;
+use Test::More;
 use Test::Exception;
 use Test::Mouse;
 
@@ -65,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;