projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
693a0d0
)
require Moose 0.59 doesn't work, need to use: Moose->VERSION('0.59')
Shawn M Moore [Tue, 28 Oct 2008 23:23:43 +0000 (23:23 +0000)]
t/500_moose_extends_mouse.t
patch
|
blob
|
blame
|
history
diff --git
a/t/500_moose_extends_mouse.t
b/t/500_moose_extends_mouse.t
index
b4bff06
..
31e7afe
100644
(file)
--- a/
t/500_moose_extends_mouse.t
+++ b/
t/500_moose_extends_mouse.t
@@
-5,7
+5,7
@@
use warnings;
use Test::More;
BEGIN {
- plan skip_all => "Moose 0.59 required for this test" unless eval { require Moose 0.59 };
+ plan skip_all => "Moose required for this test" unless eval { require Moose && Moose->VERSION('0.59') };
plan tests => 27;
}