Added index tests, 2 are failing
[catagits/Catalyst-Runtime.git] / t / live / 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 ) = @_;
8 $c->res->body( 'Action::Index index' );
9}
10
111;