Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Relative.pm
CommitLineData
01b57049 1package TestApp::Controller::Action::Relative;
2
3use strict;
4use base 'TestApp::Controller::Action';
5
6sub relative : Local {
7 my ( $self, $c ) = @_;
8 $c->forward('/action/forward/one');
9}
10
11sub relative_two : Local {
12 my ( $self, $c ) = @_;
13 $c->forward( 'TestApp::Controller::Action::Forward', 'one' );
14}
15
161;