X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FFunction-Parameters.git;a=blobdiff_plain;f=t%2Fforeign%2FMooseX-Method-Signatures%2Fnamed_defaults.t;h=f8d4577e780cc3ce9a8c4d46dcd8680575c37778;hp=b71de88f58541fb186ce006302829ca816b6f089;hb=1a52f2db46f6d870454428a07bfae09e0359eeee;hpb=ff265988561375d3cf480004e29e3891094c0afb diff --git a/t/foreign/MooseX-Method-Signatures/named_defaults.t b/t/foreign/MooseX-Method-Signatures/named_defaults.t index b71de88..f8d4577 100644 --- a/t/foreign/MooseX-Method-Signatures/named_defaults.t +++ b/t/foreign/MooseX-Method-Signatures/named_defaults.t @@ -1,7 +1,6 @@ #!perl use strict; use warnings FATAL => 'all'; - use Test::More; { @@ -9,7 +8,7 @@ use Test::More; use Function::Parameters qw(:strict); - method new($class:) { bless {}, $class } + method new($class:) { bless {}, $class } method bar (:$baz = 42) { $baz } }