Made the test more clear, works here..
[catagits/Catalyst-Action-REST.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;