X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Funit_core_script_server-without_modules.t;fp=t%2Faggregate%2Funit_core_script_server-without_modules.t;h=af9601e6add2222d8ccfc5cc11d3d7f4f5a76bb5;hp=215ca69d4ee61c4283712a8661302d86f8bc02a2;hb=1b4b5aa5c77c42e7609089ea97d06779c2c22770;hpb=062085371f2717e240b907ea9a7bf89f5f4c6a81 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;