use inlined module hiding in tests
[catagits/Catalyst-Runtime.git] / t / lib / Moo.pm
1 package Moo;
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;