live serving page in minimal app, plus a new test for that
[catagits/Catalyst-Runtime.git] / t / lib / TestAppSimple / Controller / Root.pm
CommitLineData
48603b30 1package TestAppSimple::Controller::Root;
2use base 'Catalyst::Controller';
3use Scalar::Util ();
4
5__PACKAGE__->config->{namespace} = '';
6
7sub index : Private {
8 my ( $self, $c ) = @_;
9 $c->res->body('root index');
10}
11
12sub some_action : Local {
13 my ( $self, $c ) = @_;
14 $c->res->body('some_action');
15}
16
17
181;