update distar url
[catagits/Catalyst-Runtime.git] / t / lib / TestAppShowInternalActions.pm
CommitLineData
1f94dc3a 1package TestAppShowInternalActions;
2use Moose;
eefc03e1 3use namespace::clean -except => [ 'meta' ];
1f94dc3a 4
5use Catalyst::Runtime 5.80;
6
7use Catalyst qw/ -Debug /; # Debug must remain on for
8 # t/live_show_internal_actions_warnings.t
9
10extends 'Catalyst';
11
12__PACKAGE__->config(
13 name => 'TestAppShowInternalActions',
14 disable_component_resolution_regex_fallback => 1,
15 show_internal_actions => 1,
16);
17
18__PACKAGE__->setup();
19
201;