X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestAppShowInternalActions.pm;fp=t%2Flib%2FTestAppShowInternalActions.pm;h=250730f101d8439bff58eb2e31d45c680c9cc3a0;hp=0000000000000000000000000000000000000000;hb=1f94dc3a12ef9da00bd950a1fb46ef51162b769a;hpb=2afd1ea3d10e4d0343d3f09a9aa02e4b701b8bfc diff --git a/t/lib/TestAppShowInternalActions.pm b/t/lib/TestAppShowInternalActions.pm new file mode 100644 index 0000000..250730f --- /dev/null +++ b/t/lib/TestAppShowInternalActions.pm @@ -0,0 +1,20 @@ +package TestAppShowInternalActions; +use Moose; +use namespace::autoclean; + +use Catalyst::Runtime 5.80; + +use Catalyst qw/ -Debug /; # Debug must remain on for + # t/live_show_internal_actions_warnings.t + +extends 'Catalyst'; + +__PACKAGE__->config( + name => 'TestAppShowInternalActions', + disable_component_resolution_regex_fallback => 1, + show_internal_actions => 1, +); + +__PACKAGE__->setup(); + +1;