Updating branch to current revision
[catagits/Catalyst-Runtime.git] / trunk / t / lib / Catalyst / Action / TestBefore.pm
CommitLineData
e28a6876 1package Catalyst::Action::TestBefore;
2
3use strict;
4use warnings;
5
6use base qw/Catalyst::Action/;
7
8sub execute {
9 my $self = shift;
10 my ( $controller, $c ) = @_;
11 $c->stash->{test} = 'works';
12 $self->next::method( @_ );
13}
14
151;