From: John Napiorkowski Date: Wed, 27 Jul 2011 15:06:30 +0000 (-0400) Subject: Merge branch 'psgi' of git.shadowcat.co.uk:Catalyst-Runtime into psgi X-Git-Tag: 5.89003~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=c96a2af8e9ac07970f0e2e6672d98843e0b85796;hp=d109165a971e7f1a57239d66907fef80a551833e Merge branch 'psgi' of git.shadowcat.co.uk:Catalyst-Runtime into psgi --- diff --git a/t/aggregate/unit_core_script_server-without_modules.t b/t/aggregate/unit_core_script_server-without_modules.t index 215ca69..af9601e 100644 --- a/t/aggregate/unit_core_script_server-without_modules.t +++ b/t/aggregate/unit_core_script_server-without_modules.t @@ -2,6 +2,11 @@ use strict; use warnings; use FindBin qw/$Bin/; use Test::More; +use Try::Tiny; + +plan skip_all => "Need Test::Without::Module for this test" + unless try { require Test::Without::Module; 1 }; + use Test::Without::Module qw( Starman Plack::Handler::Starman @@ -11,5 +16,13 @@ use Test::Without::Module qw( ); require "$Bin/../aggregate/unit_core_script_server.t"; +no Test::Without::Module qw( + Starman + Plack::Handler::Starman + MooseX::Daemonize + MooseX::Daemonize::Pid::File + MooseX::Daemonize::Core +); + 1;