Make optional, and unfo effects as run in aggregate
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_script_server-without_modules.t
1 use strict;
2 use warnings;
3 use FindBin qw/$Bin/;
4 use Test::More;
5 use Try::Tiny;
6
7 plan skip_all => "Need Test::Without::Module for this test"
8     unless try { require Test::Without::Module; 1 };
9
10 use Test::Without::Module qw(
11     Starman
12     Plack::Handler::Starman
13     MooseX::Daemonize
14     MooseX::Daemonize::Pid::File
15     MooseX::Daemonize::Core
16 );
17 require "$Bin/../aggregate/unit_core_script_server.t";
18
19 no Test::Without::Module qw(
20     Starman
21     Plack::Handler::Starman
22     MooseX::Daemonize
23     MooseX::Daemonize::Pid::File
24     MooseX::Daemonize::Core
25 );
26
27 1;
28