Merge branch 'check_return_of_write_to_psgi_input' of https://github.com/billmoseley...
[catagits/Catalyst-Runtime.git] / t / lib / Moo.pm
CommitLineData
eff60019 1package Moo;
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;