finalize_errors is in Context now (t/aggregate/live_component_controller_action_go...
[catagits/Catalyst-Runtime.git] / t / lib / TestApp.pm
index 50238af..0e5f69b 100644 (file)
@@ -24,17 +24,6 @@ TestApp->config( name => 'TestApp', root => '/some/dir' );
 TestApp->context_class( 'TestApp::Context' );
 TestApp->setup;
 
-# Replace the very large HTML error page with
-# useful info if something crashes during a test
-sub finalize_error {
-    my $c = shift;
-    
-    $c->next::method(@_);
-    
-    $c->res->status(500);
-    $c->res->body( 'FATAL ERROR: ' . join( ', ', @{ $c->error } ) );
-}
-
 {
     no warnings 'redefine';
     sub Catalyst::Log::error { }