about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-03-15 12:58:00 +0100
committerEric Wong <e@80x24.org>2021-03-15 16:54:30 -0400
commit3959e73f621e728d4e4b9bbbca97be0b9fc3caf7 (patch)
tree00e0e65b1fb1a2320c64c34726f9adf0d1060f45
parent17b7a15adb29ece3547e185fcdb1565778fdb89b (diff)
downloadpublic-inbox-3959e73f621e728d4e4b9bbbca97be0b9fc3caf7.tar.gz
This was for quote-folding behavior we had long ago, but
it ended up just being yet another import test.
-rw-r--r--MANIFEST1
-rw-r--r--t/html_index.t56
2 files changed, 0 insertions, 57 deletions
diff --git a/MANIFEST b/MANIFEST
index 4d2cfb10..49c10d62 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -345,7 +345,6 @@ t/hl_mod.t
 t/home2/.gitignore
 t/home2/Makefile
 t/home2/README
-t/html_index.t
 t/httpd-corner.psgi
 t/httpd-corner.t
 t/httpd-https.t
diff --git a/t/html_index.t b/t/html_index.t
deleted file mode 100644
index 8e2a674f..00000000
--- a/t/html_index.t
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright (C) 2014-2021 all contributors <meta@public-inbox.org>
-# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
-use strict;
-use warnings;
-use Test::More;
-use PublicInbox::Eml;
-use PublicInbox::Feed;
-use PublicInbox::Git;
-use PublicInbox::Import;
-use PublicInbox::Inbox;
-use PublicInbox::TestCommon;
-my ($tmpdir, $for_destroy) = tmpdir();
-my $git_dir = "$tmpdir/gittest";
-my $ibx = PublicInbox::Inbox->new({
-        address => 'test@example',
-        name => 'tester',
-        inboxdir => $git_dir,
-        url => 'http://example.com/test',
-});
-my $git = $ibx->git;
-my $im = PublicInbox::Import->new($git, 'tester', 'test@example');
-
-# setup
-{
-        $im->init_bare;
-        my $prev = "";
-
-        foreach my $i (1..6) {
-                my $mid = "<$i\@example.com>";
-                my $mid_line = "Message-ID: $mid";
-                if ($prev) {
-                        $mid_line .= "In-Reply-To: $prev";
-                }
-                $prev = $mid;
-                my $mime = PublicInbox::Eml->new(<<EOF);
-From: ME <me\@example.com>
-To: U <u\@example.com>
-$mid_line
-Subject: zzz #$i
-Date: Thu, 01 Jan 1970 00:00:00 +0000
-
-> This is a long multi line quote so it should not be allowed to
-> show up in its entirty in the Atom feed.  drop me
-
-msg $i
-
-> inline me here, short quote
-
-keep me
-EOF
-                like($im->add($mime), qr/\A:\d+\z/, 'inserted message');
-        }
-        $im->done;
-}
-
-done_testing();