stop using Moo as a test package
[catagits/Catalyst-Runtime.git] / t / lib / TestAppShowInternalActions.pm
1 package TestAppShowInternalActions;
2 use Moose;
3 use namespace::autoclean;
4
5 use Catalyst::Runtime 5.80;
6
7 use Catalyst qw/ -Debug /; # Debug must remain on for
8                            # t/live_show_internal_actions_warnings.t
9
10 extends '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
20 1;