Tests for redirects
[catagits/Catalyst-Runtime.git] / t / lib / ChainedActionsApp.pm
CommitLineData
b916f188 1package ChainedActionsApp;
2use Moose;
3use namespace::autoclean;
4
5use Catalyst::Runtime 5.80;
6
7use Catalyst qw//;
8
9extends 'Catalyst';
10
11our $VERSION = "0.01";
12$VERSION = eval $VERSION;
13
14__PACKAGE__->config(
15 name => 'ChainedActionsApp',
16 disable_component_regex_fallback => 1,
17);
18
19__PACKAGE__->setup;
20
211;