Fix regression for relative uri_for arguments after a forward() introduced in 5.7013...
[catagits/Catalyst-Runtime.git] / t / 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;