[Catalyst-commits] r13520 - Catalyst-Runtime/5.80/trunk/t/lib

hobbs at dev.catalyst.perl.org hobbs at dev.catalyst.perl.org
Wed Aug 25 01:31:50 GMT 2010


Author: hobbs
Date: 2010-08-25 02:31:50 +0100 (Wed, 25 Aug 2010)
New Revision: 13520

Added:
   Catalyst-Runtime/5.80/trunk/t/lib/ChainedActionsApp.pm
Log:
Add the app for ChainedActionsApp test. It's still failing, but differently now...


Added: Catalyst-Runtime/5.80/trunk/t/lib/ChainedActionsApp.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/t/lib/ChainedActionsApp.pm	                        (rev 0)
+++ Catalyst-Runtime/5.80/trunk/t/lib/ChainedActionsApp.pm	2010-08-25 01:31:50 UTC (rev 13520)
@@ -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;




More information about the Catalyst-commits mailing list