summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--t/basic.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/basic.t b/t/basic.t
index d73f691..86becc4 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -10,7 +10,7 @@ use Plack::Builder;
my $app = builder {
enable "Xslate",
path => qr{^/}, root => 't/basic/', pass_through => 1;
- sub { [ 404, [], [ 'Not found' ] ] };
+ sub { [ 404, [], [ 'pass_through to base app' ] ] };
};
test_psgi
@@ -40,6 +40,7 @@ CONTENT
{
my $res = $cb->(GET '/missing.html');
is($res->code, 404);
+ is($res->content, 'pass_through to base app');
}
};