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