X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2FTestApp%2Flib%2FTestApp%2FController%2FRoot.pm;h=0b3a3b4910c09865b28668516bfafcd92f9bdfda;hb=2dc77703330d645d683f869681221d2be8e4b5be;hp=aef37e809aeb55c34e9f018d0eef77e295b5f1b9;hpb=ba7e82e35d897dcd6672ebfbefc7f575ad7bb4c9;p=catagits%2FCatalyst-Runtime.git diff --git a/t/TestApp/lib/TestApp/Controller/Root.pm b/t/TestApp/lib/TestApp/Controller/Root.pm index aef37e8..0b3a3b4 100644 --- a/t/TestApp/lib/TestApp/Controller/Root.pm +++ b/t/TestApp/lib/TestApp/Controller/Root.pm @@ -39,6 +39,12 @@ sub default :Path { $c->response->status(404); } +sub test : Local { + my ($self, $c) = @_; + + $c->res->body("herro!!"); +} + =head2 end Attempt to render a view, if needed.