Regenerate test files
[gitmo/Mouse.git] / t / 050_metaclasses / 013_metaclass_traits.t
index 1680825..c04959f 100644 (file)
@@ -1,18 +1,14 @@
 #!/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;
-
-BEGIN{
-    if($] < 5.008){
-        plan skip_all => "segv happens on 5.6.2";
-    }
-}
 
 use lib 't/lib', 'lib';
 
-use Test::More tests => 32;
+use Test::More;
 use Test::Exception;
 
 {
@@ -180,7 +176,6 @@ is( Role::Foo->meta()->simple(), 5,
           '... and error provides a useful explanation' );
 }
 
-
 {
     package Foo::Subclass;
 
@@ -228,3 +223,5 @@ lives_ok {
     is( $instance->an_attr, 'value', 'Can get value' );
 }
 'Can create instance and access attributes';
+
+done_testing;