]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/psgi_text.t
wwwtext: support $INBOX_URL/_/text/config/raw
[public-inbox.git] / t / psgi_text.t
index 9979e7b3b0a0352b4f8857d1c4bd6a426c15e7ab..bdc1ebfdbce776bb525c2b8dece599051c18d6e8 100644 (file)
@@ -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();