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