about summary refs log tree commit homepage
path: root/t/view.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-06-14 00:10:52 +0000
committerEric Wong <e@80x24.org>2017-06-15 23:13:00 +0000
commitef3ca9b80fcb464d851c2f8d87f3f02f4f70986d (patch)
tree905052112686dec08eea7d4b6d2c87216e36fe0b /t/view.t
parent92afb41e15dfdcda291b432173bd49ddfc49614a (diff)
downloadpublic-inbox-ef3ca9b80fcb464d851c2f8d87f3f02f4f70986d.tar.gz
This allows us to support centralized mailing lists (which suck,
but better than no mailing list at all).
Diffstat (limited to 't/view.t')
-rw-r--r--t/view.t12
1 files changed, 0 insertions, 12 deletions
diff --git a/t/view.t b/t/view.t
index abd00018..1f4ed937 100644
--- a/t/view.t
+++ b/t/view.t
@@ -7,18 +7,6 @@ use Email::MIME;
 use Plack::Util;
 use_ok 'PublicInbox::View';
 
-my @q = (
-        'foo@bar', 'foo@bar',
-        'a b', "'a b'",
-        "a'b", "'a'\\''b'",
-);
-while (@q) {
-        my $input = shift @q;
-        my $expect = shift @q;
-        my $res = PublicInbox::Reply::squote_maybe($input);
-        is($res, $expect, "quote $input => $res");
-}
-
 # FIXME: make this test less fragile
 my $ctx = {
         env => { HTTP_HOST => 'example.com', 'psgi.url_scheme' => 'http' },