Remove use of NEXT from the test suite, except for one (commented) case to test back...
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Action / TestMyAction.pm
CommitLineData
e7c6f3d1 1package TestApp::Action::TestMyAction;
2
3use strict;
4use warnings;
5
6use base qw/Catalyst::Action/;
7
8sub execute {
9 my $self = shift;
10 my ( $controller, $c, $test ) = @_;
11 $c->res->header( 'X-TestAppActionTestMyAction', 'MyAction works' );
dbb2d5cd 12 $self->next::method(@_);
e7c6f3d1 13}
14
151;
16