Actually starting to work
[catagits/CatalystX-HelpText.git] / t / lib / TestApp / Controller / Root.pm
1 package TestApp::Controller::Root;
2 use Moose;
3 use namespace::autoclean;
4
5 BEGIN { extends 'Catalyst::Controller' }
6
7 __PACKAGE__->config(namespace => q{});
8
9 sub base : Chained('/') PathPart('') CaptureArgs(0) {}
10
11 # your actions replace this one
12 sub main : Chained('base') PathPart('') Args(0) {
13 }
14
15 sub end : ActionClass('RenderView') {}
16
17 __PACKAGE__->meta->make_immutable;