X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_bugs%2F027_constructor_object_overload.t;h=7a9a6e7da016f0514a72f2258478aa62f7eade4e;hb=0fa8ff59baf87e6a53f19175ed5869dbc1225128;hp=0dfba1c6d76ef526494b3437c73bb7f9c888955e;hpb=4c98ebb0cca8d5d49d3a91eaf735f9861d00ccb0;p=gitmo%2FMouse.git diff --git a/t/100_bugs/027_constructor_object_overload.t b/t/100_bugs/027_constructor_object_overload.t index 0dfba1c..7a9a6e7 100644 --- a/t/100_bugs/027_constructor_object_overload.t +++ b/t/100_bugs/027_constructor_object_overload.t @@ -1,7 +1,10 @@ #!/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 => 1; +use Test::More; { package Foo; @@ -17,3 +20,4 @@ use Test::More tests => 1; ok(Foo->new()->bug(), 'call constructor on object reference with overloading'); +done_testing;