summaryrefslogtreecommitdiffstats
path: root/t/02-inputs.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-01-07 16:43:29 -0600
committerJesse Luehrs <doy@tozt.net>2011-01-07 16:47:45 -0600
commit459dd0062bfc3ff82ee10a01e7dbb34ae003ce21 (patch)
treed997873c67e1c0c4ec001904e4ea18727951ba7c /t/02-inputs.t
parent6cf2b2c70509a7a0c92239af5d0978140f9ec674 (diff)
downloadplack-client-459dd0062bfc3ff82ee10a01e7dbb34ae003ce21.tar.gz
plack-client-459dd0062bfc3ff82ee10a01e7dbb34ae003ce21.zip
factor out scheme handling into separate backends
docs still need updating
Diffstat (limited to 't/02-inputs.t')
-rw-r--r--t/02-inputs.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/02-inputs.t b/t/02-inputs.t
index 04d5312..09e471c 100644
--- a/t/02-inputs.t
+++ b/t/02-inputs.t
@@ -48,7 +48,10 @@ test_tcp_plackup(
};
my $base_uri = 'psgi-local://foo';
- test_responses($base_uri, Plack::Client->new(apps => $apps));
+ test_responses(
+ $base_uri,
+ Plack::Client->new('psgi-local' => {apps => $apps})
+ );
}
sub test_responses {