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