Somewhat, but not much more sane. There are still bugs here, but this _should_ fix...
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Index.pm
1 package TestApp::Controller::Index;
2
3 use strict;
4 use base 'Catalyst::Controller';
5
6 sub index : Private {
7     my ( $self, $c ) = @_;
8     $c->res->body( 'Index index' );
9 }
10
11 1;