summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-01-12 21:43:14 -0600
committerJesse Luehrs <doy@tozt.net>2011-01-12 21:43:14 -0600
commit2a165a5e173db70c9a4af58d920ce9d23e07f513 (patch)
tree6095b1a4cedd4f96566edf196f20e042556b55a7 /t/01-basic.t
parent9970a68dbb108d36b16595d26b827a7d63223155 (diff)
downloadplack-client-2a165a5e173db70c9a4af58d920ce9d23e07f513.tar.gz
plack-client-2a165a5e173db70c9a4af58d920ce9d23e07f513.zip
stop using plackup, because some testers can't see binaries
Diffstat (limited to 't/01-basic.t')
-rw-r--r--t/01-basic.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/01-basic.t b/t/01-basic.t
index e152f8d..46ffd50 100644
--- a/t/01-basic.t
+++ b/t/01-basic.t
@@ -6,7 +6,9 @@ use Test::More;
use Plack::Client::Test;
test_tcp_plackup(
- 'sub { [ 200, ["Content-Type" => "text/plain"], [shift->{PATH_INFO}] ] }',
+ sub {
+ [ 200, ["Content-Type" => "text/plain"], [shift->{PATH_INFO}] ]
+ },
sub {
my $base_url = shift;