Merged 5.49_01 (r1339) from refactored branch to trunk
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Engine / Response / Errors.pm
diff --git a/t/lib/TestApp/Controller/Engine/Response/Errors.pm b/t/lib/TestApp/Controller/Engine/Response/Errors.pm
deleted file mode 100644 (file)
index 7e60a7f..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-package TestApp::Controller::Engine::Response::Errors;
-
-use strict;
-use base 'Catalyst::Base';
-
-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;