whitespace cleanup
[catagits/Catalyst-Runtime.git] / t / aggregate / live_engine_request_body_demand.t
index b032f63..cfbeb8f 100644 (file)
@@ -1,5 +1,3 @@
-#!perl
-
 use strict;
 use warnings;
 
@@ -54,12 +52,11 @@ SKIP:
             'Content-Type' => 'application/x-www-form-urlencoded',
             'Content'      => 'foo=bar&baz=quux'
         );
-    
+
         my $expected = { foo => 'bar', baz => 'quux', wibble => 'wobble' };
 
         ok( my $response = request($request), 'Request' );
         ok( $response->is_success, 'Response Successful 2xx' );
-
         {
             no strict 'refs';
             ok(
@@ -74,13 +71,13 @@ SKIP:
     # Test reading chunks of the request body using $c->read
     {
         my $creq;
-    
+
         my $request = POST(
             'http://localhost/body/read',
             'Content-Type' => 'text/plain',
             'Content'      => 'x' x 105_000
         );
-    
+
         my $expected = '10000|10000|10000|10000|10000|10000|10000|10000|10000|10000|5000';
 
         ok( my $response = request($request), 'Request' );