X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestApp%2FActionRole%2FGuff.pm;fp=t%2Flib%2FTestApp%2FActionRole%2FGuff.pm;h=3e8fdd96cc8ca9e508c7d1209f7236da8c2d4352;hp=0000000000000000000000000000000000000000;hb=82010ea176741c7a4f2baf3f6f27377b1d9f6b15;hpb=10542b5178b2fa036e0658111523ea68a7a04437 diff --git a/t/lib/TestApp/ActionRole/Guff.pm b/t/lib/TestApp/ActionRole/Guff.pm new file mode 100644 index 0000000..3e8fdd9 --- /dev/null +++ b/t/lib/TestApp/ActionRole/Guff.pm @@ -0,0 +1,10 @@ +package TestApp::ActionRole::Guff; + +use Moose::Role; + +after execute => sub { + my ($self, $controller, $c) = @_; + $c->response->body(__PACKAGE__); +}; + +1;