make it easier to breakpoint into the request
Christian Walde [Mon, 3 Oct 2011 11:14:13 +0000 (13:14 +0200)]
t/post.t

index 24d6086..3390f63 100644 (file)
--- a/t/post.t
+++ b/t/post.t
@@ -30,7 +30,9 @@ my $app = PostTest->new;
 
 sub run_request {
   my $request = shift;
-  my $response = test_psgi($app->to_psgi_app, sub { shift->($request) });
+  my $response = test_psgi($app->to_psgi_app, sub {
+    shift->($request);
+  });
   return $response;
 }