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