X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=t%2F020_attributes%2F026_attribute_without_any_methods.t;fp=t%2F020_attributes%2F026_attribute_without_any_methods.t;h=36a6a1917389768476823d13e08081f203a3f5ec;hp=0acf3c00883ada14237480481f50839fa084e2da;hb=1f5ce14ae261aa33d3920121f86a1b6a5a5b1b43;hpb=1eb43e0a41287a5b7de774527e379f9ed57e7e21 diff --git a/t/020_attributes/026_attribute_without_any_methods.t b/t/020_attributes/026_attribute_without_any_methods.t index 0acf3c0..36a6a19 100644 --- a/t/020_attributes/026_attribute_without_any_methods.t +++ b/t/020_attributes/026_attribute_without_any_methods.t @@ -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;