Fixed tests
[catagits/Catalyst-Runtime.git] / t / live_engine_reponse_errors.t
index 7f7c366..7579135 100644 (file)
@@ -9,31 +9,52 @@ use lib "$FindBin::Bin/lib";
 use Test::More tests => 18;
 use Catalyst::Test 'TestApp';
 
-close STDERR; # i'm naughty :)
+close STDERR;    # i'm naughty :)
 
 {
-    ok( my $response = request('http://localhost/engine/response/errors/one'), 'Request' );
+    ok( my $response = request('http://localhost/engine/response/errors/one'),
+        'Request' );
     ok( $response->is_error, 'Response Server Error 5xx' );
-    is( $response->code, 500, 'Response Code' );
+    is( $response->code,         500,         'Response Code' );
     is( $response->content_type, 'text/html', 'Response Content-Type' );
-    is( $response->header('X-Catalyst-Action'), 'engine/response/errors/one', 'Test Action' );
-    like( $response->header('X-Catalyst-Error'), qr/^Caught exception/, 'Catalyst Error' );
+    is( $response->header('X-Catalyst-Action'),
+        'engine/response/errors/one', 'Test Action' );
+    like(
+        $response->header('X-Catalyst-Error'),
+        qr/^Caught exception/,
+        'Catalyst Error'
+    );
 }
 
 {
-    ok( my $response = request('http://localhost/engine/response/errors/two'), 'Request' );
-    ok( $response->is_error, 'Client Error 4xx' );
-    is( $response->code, 404, 'Response Code' );
+    ok( my $response = request('http://localhost/engine/response/errors/two'),
+        'Request' );
+    ok( $response->is_error, 'Response Server Error 5xx' );
+    is( $response->code,         500,         'Response Code' );
     is( $response->content_type, 'text/html', 'Response Content-Type' );
-    is( $response->header('X-Catalyst-Action'), 'engine/response/errors/two', 'Test Action' );
-    like( $response->header('X-Catalyst-Error'), qr/^Couldn't forward to/, 'Catalyst Error' );
+    is( $response->header('X-Catalyst-Action'),
+        'engine/response/errors/two', 'Test Action' );
+    like(
+        $response->header('X-Catalyst-Error'),
+        qr/^Couldn't forward to/,
+        'Catalyst Error'
+    );
 }
 
 {
-    ok( my $response = request('http://localhost/engine/response/errors/three'), 'Request' );
+    ok( my $response = request('http://localhost/engine/response/errors/three'),
+        'Request' );
     ok( $response->is_error, 'Response Server Error 5xx' );
-    is( $response->code, 500, 'Response Code' );
+    is( $response->code,         500,         'Response Code' );
     is( $response->content_type, 'text/html', 'Response Content-Type' );
-    is( $response->header('X-Catalyst-Action'), 'engine/response/errors/three', 'Test Action' );
-    like( $response->header('X-Catalyst-Error'), qr/^Caught exception "I'm going to die!"$/, 'Catalyst Error' );
+    is(
+        $response->header('X-Catalyst-Action'),
+        'engine/response/errors/three',
+        'Test Action'
+    );
+    like(
+        $response->header('X-Catalyst-Error'),
+        qr/^Caught exception "I'm going to die!"$/,
+        'Catalyst Error'
+    );
 }