X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FEngine%2FResponse%2FErrors.pm;fp=t%2Flib%2FTestApp%2FController%2FEngine%2FResponse%2FErrors.pm;h=0000000000000000000000000000000000000000;hb=f436bc1bece2bcc2a04138068e5c22e70d9d6d35;hp=562997e823f42726a056354aa51d52440c0d4d5f;hpb=e28a6876ad3e11890226e5bab6df4b0725e0981e;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Engine/Response/Errors.pm b/t/lib/TestApp/Controller/Engine/Response/Errors.pm deleted file mode 100644 index 562997e..0000000 --- a/t/lib/TestApp/Controller/Engine/Response/Errors.pm +++ /dev/null @@ -1,23 +0,0 @@ -package TestApp::Controller::Engine::Response::Errors; - -use strict; -use base 'Catalyst::Controller'; - -sub one : Relative { - my ( $self, $c ) = @_; - my $a = 0; - my $b = 0; - my $t = $a / $b; -} - -sub two : Relative { - my ( $self, $c ) = @_; - $c->forward('/non/existing/path'); -} - -sub three : Relative { - my ( $self, $c ) = @_; - die("I'm going to die!\n"); -} - -1;