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