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