Fix test warnings.
Florian Ragwitz [Sun, 29 Nov 2009 11:01:05 +0000 (12:01 +0100)]
Build.PL
t/003_saidso.t

index d56c53e..86a72a0 100644 (file)
--- 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 => {
     },
index b3d5d18..1952e41 100644 (file)
@@ -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 = $@;
 }