projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
d72006c
)
We need to skip the moose_extends_mouse tests in the absense of Moose
Shawn M Moore [Mon, 29 Sep 2008 02:35:36 +0000 (
02:35
+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
25f29c5
..
7c4aa56
100644
(file)
--- a/
t/500_moose_extends_mouse.t
+++ b/
t/500_moose_extends_mouse.t
@@
-3,7
+3,12
@@
use strict;
use warnings;
-use Test::More 'no_plan';
+use Test::More;
+BEGIN {
+ plan skip_all => "Moose required for this test" unless eval { require Moose };
+ plan tests => 27;
+}
+
use Mouse::Util ':test';
{