From: Florian Ragwitz Date: Thu, 19 Feb 2009 01:29:05 +0000 (+0000) Subject: Don't run the moose controller test if Moose isn't available X-Git-Tag: 5.71001~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=e16a6c4e6c4d49e73b5286b3186616af14f3f554 Don't run the moose controller test if Moose isn't available --- diff --git a/t/live_component_controller_moose.t b/t/live_component_controller_moose.t index 0882fd0..353e515 100644 --- a/t/live_component_controller_moose.t +++ b/t/live_component_controller_moose.t @@ -1,10 +1,19 @@ use strict; use warnings; +use Test::More; + +BEGIN { + if (eval 'require Moose; 1') { + plan tests => 2; + } + else { + plan skip_all => 'Moose is required for this test'; + } +} use FindBin; use lib "$FindBin::Bin/lib"; -use Test::More tests => 2; use Catalyst::Test 'TestApp'; {