From: John Napiorkowski Date: Sun, 31 Jul 2011 17:58:52 +0000 (+0000) Subject: Engine cannot be set at setup time anymore X-Git-Tag: 0.54~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FTest-WWW-Mechanize-Catalyst.git;a=commitdiff_plain;h=08ff083c1d5839a2c805ef20a347d61b8e9e026c Engine cannot be set at setup time anymore --- diff --git a/t/lib/ExternalCatty.pm b/t/lib/ExternalCatty.pm index 9b2fd1e..e16cf60 100644 --- a/t/lib/ExternalCatty.pm +++ b/t/lib/ExternalCatty.pm @@ -1,10 +1,11 @@ package ExternalCatty; use strict; use warnings; -use Catalyst qw/-Engine=HTTP/; +use Catalyst; __PACKAGE__->config( name => 'ExternalCatty' ); __PACKAGE__->setup; +__PACKAGE__->setup_engine('HTTP'); # The Cat HTTP server background option is useless here :-( # Thus we have to provide our own background method.