add status for no content and gone
[catagits/Catalyst-Action-REST.git] / t / lib / Test / Catalyst / Action / REST / Controller / REST.pm
CommitLineData
0ba73721 1package Test::Catalyst::Action::REST::Controller::REST;
2
3use strict;
4use warnings;
5
6use base 'Catalyst::Controller::REST';
7
8sub test : Local {
9 my ($self, $c) = @_;
10 $self->status_ok($c, entity => { test => 'worked', data => $c->req->data });
11}
12
131;