Updated number of tests for live_engine_request_parameters
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / ActionRole / Guff.pm
1 package TestApp::ActionRole::Guff;
2
3 use Moose::Role;
4
5 after execute => sub {
6     my ($self, $controller, $c) = @_;
7     $c->response->body(__PACKAGE__);
8 };
9
10 1;