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