Make chaining to yourself explode at app load time + tests from bug ash found, remove...
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Root.pm
CommitLineData
32d5a0c5 1package TestApp::Controller::Root;
2
3use base 'Catalyst::Controller';
4
5__PACKAGE__->config->{namespace} = '';
6
81e75875 7sub chain_root_index : Chained('/') PathPart('') Args(0) { }
8
53119b78 9sub zero : Path('0') {
10 my ( $self, $c ) = @_;
11 $c->res->header( 'X-Test-Class' => ref($self) );
12 $c->response->content_type('text/plain; charset=utf-8');
13 $c->forward('TestApp::View::Dump::Request');
14}
15
19c01ee1 16sub localregex : LocalRegex('^localregex$') {
17 my ( $self, $c ) = @_;
18 $c->res->header( 'X-Test-Class' => ref($self) );
19 $c->response->content_type('text/plain; charset=utf-8');
20 $c->forward('TestApp::View::Dump::Request');
21}
22
32d5a0c5 231;