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