Create branch register_actions.
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Dump.pm
CommitLineData
dd4e6fd2 1package TestApp::Controller::Dump;
2
3use strict;
4use base 'Catalyst::Base';
5
6sub default : Action Private {
7 my ( $self, $c ) = @_;
8 $c->forward('TestApp::View::Dump');
9}
10
316bf0f0 11sub env : Action Relative {
12 my ( $self, $c ) = @_;
ae29b412 13 $c->forward('TestApp::View::Dump', [\%ENV]);
316bf0f0 14}
15
dd4e6fd2 16sub parameters : Action Relative {
17 my ( $self, $c ) = @_;
18 $c->forward('TestApp::View::Dump::Parameters');
19}
20
21sub request : Action Relative {
22 my ( $self, $c ) = @_;
23 $c->forward('TestApp::View::Dump::Request');
24}
25
26sub response : Action Relative {
27 my ( $self, $c ) = @_;
28 $c->forward('TestApp::View::Dump::Response');
29}
30
ae29b412 31sub body : Action Relative {
32 my ( $self, $c ) = @_;
33 $c->forward('TestApp::View::Dump::Body');
34}
35
dd4e6fd2 361;