tests for dispatching to actions
[catagits/Catalyst-Action-REST.git] / t / lib / Test / Action / Class.pm
CommitLineData
7656dd12 1package Test::Action::Class;
2use strict;
3use warnings;
4
5use Moose;
6BEGIN { extends 'Catalyst::Action' };
7
8before execute => sub {
9 my ($self, $controller, $c, @args) = @_;
10 $c->response->header( 'Using-Action' => 'STATION' );
11};
12
13no Moose;
14
151;