From: Florian Ragwitz Date: Thu, 14 Apr 2011 11:50:06 +0000 (+0200) Subject: Add a test view for dumping actions X-Git-Tag: 5.80033~26 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=72d5e5c01f94b74edc070d13616ce5112f3b16ad Add a test view for dumping actions --- diff --git a/t/lib/TestApp/View/Dump/Action.pm b/t/lib/TestApp/View/Dump/Action.pm new file mode 100644 index 0000000..a8c7a97 --- /dev/null +++ b/t/lib/TestApp/View/Dump/Action.pm @@ -0,0 +1,11 @@ +package TestApp::View::Dump::Action; + +use strict; +use base qw[TestApp::View::Dump]; + +sub process { + my ( $self, $c ) = @_; + return $self->SUPER::process( $c, $c->action ); +} + +1;