summaryrefslogtreecommitdiffstats
path: root/t/02-inputs.t
diff options
context:
space:
mode:
Diffstat (limited to 't/02-inputs.t')
-rw-r--r--t/02-inputs.t8
1 files changed, 3 insertions, 5 deletions
diff --git a/t/02-inputs.t b/t/02-inputs.t
index 094aec6..5f9b56a 100644
--- a/t/02-inputs.t
+++ b/t/02-inputs.t
@@ -7,8 +7,7 @@ use Plack::Client::Test;
use HTTP::Message::PSGI;
-my $app = <<'APP';
-sub {
+my $app = sub {
my $env = shift;
return [
200,
@@ -30,8 +29,7 @@ sub {
},
]
];
-}
-APP
+};
test_tcp_plackup(
$app,
@@ -44,7 +42,7 @@ test_tcp_plackup(
{
my $apps = {
- foo => eval $app,
+ foo => $app,
};
my $base_uri = 'psgi-local://foo';