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.t;h=c4d3c5bf80cb1d136cde583b48d360cc5e49528a;hp=7121db40d07d20fab55d42cdf606d314b7a5b85f;hb=7064f69b1dfb59d1f3bad647b2097d0320acce8a;hpb=aee7cdcc0b2b3b7dc672b4b4a31b8c3b7ef3f1f7 diff --git a/t/aggregate/unit_core_script_server.t b/t/aggregate/unit_core_script_server.t index 7121db4..c4d3c5b 100644 --- a/t/aggregate/unit_core_script_server.t +++ b/t/aggregate/unit_core_script_server.t @@ -40,7 +40,7 @@ testOption( [ qw/--port 3001/ ], ['3001', undef, opthash(port => 3001)] ); testOption( [ qw// ], [5000, undef, opthash(port => 5000)] ); } -if (try { require Starman; 1; }) { +if (try { require Plack::Handler::Starman; 1; }) { # fork -f -fork --fork -f --fork testOption( [ qw/--fork/ ], ['3000', undef, opthash(fork => 1)] ); testOption( [ qw/-f/ ], ['3000', undef, opthash(fork => 1)] ); @@ -52,7 +52,7 @@ if (try { require MooseX::Daemonize; 1; }) { testOption( [ qw/--pid cat.pid/ ], ['3000', undef, opthash(pidfile => "cat.pid")] ); } -if (try { require Starman; 1; }) { +if (try { require Plack::Handler::Starman; 1; }) { # keepalive -k -keepalive --keepalive -k --keepalive testOption( [ qw/-k/ ], ['3000', undef, opthash(keepalive => 1)] ); testOption( [ qw/--keepalive/ ], ['3000', undef, opthash(keepalive => 1)] ); @@ -151,7 +151,7 @@ sub testBackgroundOptionWithFork { ## Check a few args is_deeply $app->{ARGV}, $argstring; - is $app->{port}, '3000'; + is $app->port, '3000'; is($app->{background}, 1); }