projects
/
gitmo/Moose-Policy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
50e8088
)
Fix test warnings.
Florian Ragwitz [Sun, 29 Nov 2009 11:01:05 +0000 (12:01 +0100)]
Build.PL
patch
|
blob
|
blame
|
history
t/003_saidso.t
patch
|
blob
|
blame
|
history
diff --git
a/Build.PL
b/Build.PL
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 => {
},
diff --git
a/t/003_saidso.t
b/t/003_saidso.t
index
b3d5d18
..
1952e41
100644
(file)
--- 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 = $@;
}