1package TestApp::Controller::Root; 2 3use strict; 4use warnings; 5 6use base 'Catalyst::Controller'; 7 8sub testpage : Chained('/') Args(0) { 9 my ($self, $c) = @_; 10 $c->stash->{current_view} = 'TT'; 11 $c->stash->{template} = 'testpage.tt'; 12} 13 14sub end : ActionClass('RenderView') {} 15 161; 17__END__ 18