Version 1.07
[catagits/Catalyst-Action-Serialize-Data-Serializer.git] / t / lib / Test / Action / Class / Sub.pm
CommitLineData
5213846d 1package Test::Action::Class::Sub;
2use Moose;
3
4extends 'Test::Action::Class';
5
6before execute => sub {
7 my ($self, $controller, $c, @args) = @_;
8 $c->response->header( 'Using-Sub-Action' => 'MOO' );
9};
10
11no Moose;
12
131;