update distar url
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Auto / Deep.pm
CommitLineData
e1bf532b 1package TestApp::Controller::Action::Auto::Deep;
2
3use strict;
4use base 'TestApp::Controller::Action';
5
6sub auto : Private {
7 my ( $self, $c ) = @_;
8 return 1;
9}
10
11sub default : Private {
12 my ( $self, $c ) = @_;
13 $c->res->body( 'deep default' );
14}
15
16sub one : Local {
17 my ( $self, $c ) = @_;
18 $c->res->body( 'deep one' );
19}
20
211;