From: Andrew Rodland Date: Wed, 25 Aug 2010 01:31:50 +0000 (+0000) Subject: Add the app for ChainedActionsApp test. It's still failing, but differently now... X-Git-Tag: 5.80026~7^2~12 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=b916f1886fc97523c8719b5c74a5248d5a15974d Add the app for ChainedActionsApp test. It's still failing, but differently now... --- diff --git a/t/lib/ChainedActionsApp.pm b/t/lib/ChainedActionsApp.pm new file mode 100644 index 0000000..375ce10 --- /dev/null +++ b/t/lib/ChainedActionsApp.pm @@ -0,0 +1,21 @@ +package ChainedActionsApp; +use Moose; +use namespace::autoclean; + +use Catalyst::Runtime 5.80; + +use Catalyst qw//; + +extends 'Catalyst'; + +our $VERSION = "0.01"; +$VERSION = eval $VERSION; + +__PACKAGE__->config( + name => 'ChainedActionsApp', + disable_component_regex_fallback => 1, +); + +__PACKAGE__->setup; + +1;