rescue :PathPrefix from an old branch
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / PathPrefix.pm
1 package TestApp::Controller::Action::Chained::PathPrefix;
2
3 use strict;
4 use warnings;
5
6 use base qw/Catalyst::Controller/;
7
8 # this is kinda the same thing as: sub instance : Path {}
9 # it should respond to: /action/chained/pathprefix/*
10 sub instance : Chained('/') PathPrefix Args(1) { }
11
12 1;