stop using Moo as a test package
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / ActionRole / Guff.pm
CommitLineData
82010ea1 1package TestApp::ActionRole::Guff;
eff60019 2
3use Moose::Role;
4
5after execute => sub {
6 my ($self, $controller, $c) = @_;
7 $c->response->body(__PACKAGE__);
8};
9
101;