X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FCatalyst%2FActionRole%2FZoo.pm;fp=t%2Flib%2FCatalyst%2FActionRole%2FZoo.pm;h=d4f0c9f8ea387336ff5c99229430cbb2a5eb990d;hp=0000000000000000000000000000000000000000;hb=eff6001994ab7558c366fa5f9e5aa8c2de69ac4a;hpb=aea897b2495d079f3849eb30cd3dc7c89b31f742 diff --git a/t/lib/Catalyst/ActionRole/Zoo.pm b/t/lib/Catalyst/ActionRole/Zoo.pm new file mode 100644 index 0000000..d4f0c9f --- /dev/null +++ b/t/lib/Catalyst/ActionRole/Zoo.pm @@ -0,0 +1,12 @@ +package Catalyst::ActionRole::Zoo; + +use Moose::Role; + +use namespace::autoclean; + +after execute => sub { + my ($self, $controller, $c) = @_; + $c->response->body(__PACKAGE__); +}; + +1;