Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Regexp.pm
CommitLineData
dd4e6fd2 1package TestApp::Controller::Action::Regexp;
2
3use strict;
4use base 'TestApp::Controller::Action';
5
6d030e6f 6sub one : Action Regex('^action/regexp/(\w+)/(\d+)$') {
dd4e6fd2 7 my ( $self, $c ) = @_;
8 $c->forward('TestApp::View::Dump::Request');
9}
10
081def36 11sub two : Action LocalRegexp('^(\d+)/(\w+)$') {
dd4e6fd2 12 my ( $self, $c ) = @_;
13 $c->forward('TestApp::View::Dump::Request');
14}
15
161;