about summary refs log tree commit homepage
path: root/t/plack.t
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-02-04 04:44:22 +0000
committerEric Wong <e@yhbt.net>2020-02-04 21:39:51 +0000
commitbf4d35dd2f6389e9aa4dc87fdfaef801fa5b9108 (patch)
tree40fda80faa4da33b72120fe2427f5e9bf3208832 /t/plack.t
parentc5ce0f75020db9b3fa7dae9958bedcdb08452e04 (diff)
downloadpublic-inbox-bf4d35dd2f6389e9aa4dc87fdfaef801fa5b9108.tar.gz
Instead of serving $INBOX_DIR/all.git/description, since
$INBOX_DIR/all.git/description is not described in the
default message when it's missing.
Diffstat (limited to 't/plack.t')
-rw-r--r--t/plack.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/plack.t b/t/plack.t
index a9a053ed..e23658fd 100644
--- a/t/plack.t
+++ b/t/plack.t
@@ -189,6 +189,8 @@ test_psgi($app, sub {
         like($body, qr/<title>test for public-inbox/,
                 "set title in XML feed");
         like($body, qr/zzzzzz/, 'body included');
+        $res = $cb->(GET($pfx . '/description'));
+        like($res->content, qr/test for public-inbox/, 'got description');
 });
 
 test_psgi($app, sub {