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