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