Merge branch 'pr/154' into release-candidates/rc-5.90116
[catagits/Catalyst-Runtime.git] / t / lib / Catalyst / ActionRole / Guff.pm
CommitLineData
82010ea1 1package Catalyst::ActionRole::Guff;
eff60019 2
3use Moose::Role;
4
5use namespace::autoclean;
6
7after execute => sub {
8 my ($self, $controller, $c) = @_;
9 $c->response->body(__PACKAGE__);
10};
11
121;