about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-04-10 00:33:54 +0000
committerEric Wong <e@80x24.org>2014-04-10 00:33:54 +0000
commit1534bd3ac9848fc69b473dedc069ae2a95347e1e (patch)
treed0b29fb3fd54958f6e3e176d651ca1ba625df51c /t
parent44af7563687c794dba2006a774ec525208488755 (diff)
downloadpublic-inbox-1534bd3ac9848fc69b473dedc069ae2a95347e1e.tar.gz
Remove the specified /all.html while we're at it, we only have
/all.atom.xml because it's convenient for feed readers.
Diffstat (limited to 't')
-rw-r--r--t/cgi.t13
1 files changed, 3 insertions, 10 deletions
diff --git a/t/cgi.t b/t/cgi.t
index f359cf6e..3ba74f30 100644
--- a/t/cgi.t
+++ b/t/cgi.t
@@ -117,16 +117,9 @@ EOF
 # indices
 {
         local $ENV{HOME} = $home;
-        my $res = cgi_run("/test/all.atom.xml");
-        like($res->{body}, qr/<title>test for public-inbox/,
-                "set title in XML feed");
-        like($res->{body},
-                qr!http://test\.example\.com/test/mid/blah%40example\.com!,
-                "link id set");
-        like($res->{body}, qr/what\?/, "reply included");
-
-        $res = cgi_run("/test/index.atom.xml");
-        unlike($res->{body}, qr/what\?/, "reply not included in index");
+        my $res = cgi_run("/test/");
+        like($res->{head}, qr/Status: 200 OK/, "index returns 200");
+        # more checks in t/feed.t
 }
 
 done_testing();