Attempt to fix Travis build on 5.20 and 5.22
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / ActionRole / Moo.pm
1 package TestApp::ActionRole::Moo;
2
3 use Moose::Role;
4
5 after execute => sub {
6     my ($self, $controller, $c) = @_;
7     $c->response->body(__PACKAGE__);
8 };
9
10 1;