From: Christian Walde Date: Mon, 3 Oct 2011 11:14:13 +0000 (+0200) Subject: make it easier to breakpoint into the request X-Git-Tag: v0.009~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FWeb-Simple.git;a=commitdiff_plain;h=ce69eb84aa493282c75d1be3f43c2b72d3e19aae make it easier to breakpoint into the request --- diff --git a/t/post.t b/t/post.t index 24d6086..3390f63 100644 --- 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; }