rescue :PathPrefix from an old branch
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / PathPrefix.pm
CommitLineData
e5d2cfdb 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;