update distar url
[catagits/Catalyst-Runtime.git] / t / lib / ChainedActionsApp.pm
CommitLineData
b916f188 1package ChainedActionsApp;
2use Moose;
4fb27043 3use TestLogger;
b916f188 4
5use Catalyst::Runtime 5.80;
6
7use Catalyst qw//;
8
eefc03e1 9use namespace::clean -except => [ 'meta' ];
10
b916f188 11extends 'Catalyst';
12
13our $VERSION = "0.01";
14$VERSION = eval $VERSION;
15
16__PACKAGE__->config(
17 name => 'ChainedActionsApp',
18 disable_component_regex_fallback => 1,
19);
20
4fb27043 21__PACKAGE__->log(TestLogger->new);
22
b916f188 23__PACKAGE__->setup;
24
251;