Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Global.pm
CommitLineData
e5d7f18c 1package TestApp::Controller::Action::Global;
dd4e6fd2 2
3use strict;
4use base 'TestApp::Controller::Action';
5
e5d7f18c 6sub action_global_one : Action Absolute {
dd4e6fd2 7 my ( $self, $c ) = @_;
8 $c->forward('TestApp::View::Dump::Request');
9}
10
e5d7f18c 11sub action_global_two : Action Global {
dd4e6fd2 12 my ( $self, $c ) = @_;
13 $c->forward('TestApp::View::Dump::Request');
14}
15
e5d7f18c 16sub action_global_three : Action Path('/action_global_three') {
dd4e6fd2 17 my ( $self, $c ) = @_;
18 $c->forward('TestApp::View::Dump::Request');
19}
20
211;