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