Add the app for ChainedActionsApp test. It's still failing, but differently now...
[catagits/Catalyst-Runtime.git] / t / lib / ChainedActionsApp.pm
diff --git a/t/lib/ChainedActionsApp.pm b/t/lib/ChainedActionsApp.pm
new file mode 100644 (file)
index 0000000..375ce10
--- /dev/null
@@ -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;