Regenerate test files
[gitmo/Mouse.git] / t / 020_attributes / 026_attribute_without_any_methods.t
index 0acf3c0..36a6a19 100644 (file)
@@ -1,9 +1,12 @@
 #!/usr/bin/perl
-BEGIN{ $ENV{MOUSE_VERBOSE} = 1 }
+# 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 => 2;
+use Test::More;
 
 use Mouse ();
 use Mouse::Meta::Class;
@@ -20,3 +23,5 @@ like $warn, qr/Attribute \(foo\) of class Banana has no associated methods/,
 $warn = '';
 $meta->add_attribute('bar', is => 'bare');
 is $warn, '', 'add attribute with no methods and is => "bare"';
+
+done_testing;