Remove warnings from duplicate action declerations
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Private.pm
CommitLineData
dd4e6fd2 1package TestApp::Controller::Action::Private;
2
3use strict;
4use base 'TestApp::Controller::Action';
5
6sub default : Private {
7 my ( $self, $c ) = @_;
8 $c->res->output('access denied');
9}
10
81e2964a 11sub one : Private {
dd4e6fd2 12 my ( $self, $c ) = @_;
13 $c->res->output('access allowed');
14}
15
81e2964a 16sub two : Private {
dd4e6fd2 17 my ( $self, $c ) = @_;
18 $c->res->output('access allowed');
19}
20
81e2964a 21sub three : Private {
dd4e6fd2 22 my ( $self, $c ) = @_;
23 $c->res->output('access allowed');
24}
25
81e2964a 26sub four : Private {
dd4e6fd2 27 my ( $self, $c ) = @_;
28 $c->res->output('access allowed');
29}
30
81e2964a 31sub five : Private {
dd4e6fd2 32 my ( $self, $c ) = @_;
33 $c->res->output('access allowed');
34}
35
361;