Merge r9534 renaming kanes crequest to ctx_request up from 5.70 trunk. 5.80 is now...
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Index.pm
1 package TestApp::Controller::Index;
2
3 use strict;
4 use base 'Catalyst::Base';
5
6 sub index : Private {
7     my ( $self, $c ) = @_;
8     $c->res->body( 'Index index' );
9 }
10
11 1;