Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Index.pm
1 package TestApp::Controller::Action::Index;
2
3 use strict;
4 use base 'TestApp::Controller::Action';
5
6 sub index : Private {
7     my ( $self, $c ) = @_;
8     $c->res->body( 'Action-Index index' );
9 }
10
11 1;