Create branch register_actions.
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / View / Dump / Body.pm
CommitLineData
ae29b412 1package TestApp::View::Dump::Body;
2
3use strict;
4use base qw[TestApp::View::Dump];
5
6sub process {
7 my ( $self, $c ) = @_;
8 return $self->SUPER::process( $c, $c->request->{_body} ); # FIXME, accessor doesn't work?
9}
10
111;