r12983@zaphod: kd | 2008-04-28 18:10:27 +1000
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / PathPrefix.pm
CommitLineData
2f381252 1package TestApp::Controller::Action::Chained::PathPrefix;
2
3use strict;
4use warnings;
5
6use base qw/Catalyst::Controller/;
7
8# this is kinda the same thing as: sub instance : Path {}
9# it should respond to: /action/chained/pathprefix/*
10sub instance : Chained('/') PathPrefix Args(1) { }
11
121;