about summary refs log tree commit homepage
path: root/t/psgi_text.t
diff options
context:
space:
mode:
Diffstat (limited to 't/psgi_text.t')
-rw-r--r--t/psgi_text.t7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/psgi_text.t b/t/psgi_text.t
index 9979e7b3..bdc1ebfd 100644
--- a/t/psgi_text.t
+++ b/t/psgi_text.t
@@ -34,6 +34,13 @@ test_psgi(sub { $www->call(@_) }, sub {
         $res = $cb->(GET('/test/_/text/help/'));
         like($res->content, qr!<title>public-inbox help.*</title>!,
                 'default help');
+        $res = $cb->(GET('/test/_/text/config/raw'));
+        my $f = "$tmpdir/cfg";
+        open my $fh, '>', $f or die;
+        print $fh $res->content or die;
+        close $fh or die;
+        my $cfg = PublicInbox::Config->new($f);
+        is($cfg->{"$cfgpfx.address"}, $addr, 'got expected address in config');
 });
 
 done_testing();