added test case for parsing JSON and updated changlog
[catagits/Catalyst-Runtime.git] / t / lib / TestDataHandlers / Controller / Root.pm
CommitLineData
e2aa4a21 1package TestDataHandlers::Controller::Root;
2
3use base 'Catalyst::Controller';
4
5sub test_json :Local {
6 my ($self, $c) = @_;
7 $c->res->body($c->req->body_data->{message});
8}
9
101;