]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/solver_git.t
www_coderepo: /tree/ redirects to /$OID/s/
[public-inbox.git] / t / solver_git.t
index 89ed03626673c459661427e88b108299ae9580df..5519fa1817e1d2971d9e34d0b8cdf2ebb41ff2ee 100644 (file)
@@ -381,6 +381,13 @@ EOF
                        $res = $cb->(GET('/public-inbox/atom/README.md'));
                        is($res->code, 404, '404 on non-existent file Atom feed');
                }
+
+               $res = $cb->(GET('/public-inbox/tree/'));
+               is($res->code, 302, 'got redirect');
+               $res = $cb->(GET('/public-inbox/tree/README'));
+               is($res->code, 302, 'got redirect for regular file');
+               $res = $cb->(GET('/public-inbox/tree/Documentation'));
+               is($res->code, 302, 'got redirect for directory');
        };
        test_psgi(sub { $www->call(@_) }, $client);
        my $env = { PI_CONFIG => $cfgpath, TMPDIR => $tmpdir };