a132c222cbb17734c807858e44082ef5ce83bbe6
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / End.pm
1 package TestApp::Controller::Action::End;
2
3 use strict;
4 use base 'TestApp::Controller::Action';
5
6 sub end : Private { 
7     my ( $self, $c ) = @_;
8 }
9
10 sub default : Private {
11     my ( $self, $c ) = @_;
12     $c->forward('TestApp::View::Dump::Request');
13 }
14
15 1;