Suppressing Data::Dumper warnings in test t/aggregate/live_component_controller_actio...
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / View / Dump / Action.pm
CommitLineData
72d5e5c0 1package TestApp::View::Dump::Action;
2
3use strict;
4use base qw[TestApp::View::Dump];
5
6sub process {
7 my ( $self, $c ) = @_;
9310b818 8 return $self->SUPER::process( $c, $c->action, 0 );
72d5e5c0 9}
10
111;