X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Funit_core_script_server-without_modules.t;h=c5588bcd28f8cc3cc6d29ed9e69daeab35d36f19;hb=2a1acc71ae813ba9ca5b63a3c65c70fde941c319;hp=a93b213e468a3fa1a62bf0e2afdb56da626b222e;hpb=1a3dd976ad46b71f2eabd3230a393c7a1aa84b6e;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/unit_core_script_server-without_modules.t b/t/aggregate/unit_core_script_server-without_modules.t index a93b213..c5588bc 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,3 +16,13 @@ use Test::Without::Module qw( ); require "$Bin/../aggregate/unit_core_script_server.t"; +Test::Without::Module->unimport(qw( + Starman + Plack::Handler::Starman + MooseX::Daemonize + MooseX::Daemonize::Pid::File + MooseX::Daemonize::Core +)); + +1; +