From: Florian Ragwitz Date: Sun, 29 Nov 2009 11:01:05 +0000 (+0100) Subject: Fix test warnings. X-Git-Tag: 0_04~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMoose-Policy.git;a=commitdiff_plain;h=82a71d18b1c208770d94a4ea87e9e75f7641df9a;hp=50e80884ed20d22bde2f43dcef20f1d9f49c7460 Fix test warnings. --- diff --git a/Build.PL b/Build.PL index d56c53e..86a72a0 100644 --- a/Build.PL +++ b/Build.PL @@ -5,8 +5,8 @@ use strict; my $build = Module::Build->new( module_name => 'Moose::Policy', license => 'perl', - requires => { - 'Moose' => '0.20', + requires => { + 'Moose' => '0.84', }, optional => { }, diff --git a/t/003_saidso.t b/t/003_saidso.t index b3d5d18..1952e41 100644 --- a/t/003_saidso.t +++ b/t/003_saidso.t @@ -54,7 +54,7 @@ my $oops; has 'bar' => (default => 'Foo::bar'); has 'baz' => (default => 'Foo::baz'); - has 'bop' => (is => 'no', default => 'woot'); + has 'bop' => (is => 'bare', default => 'woot'); eval { has 'oops' => (is => 'thbbbt'); }; $oops = $@; }