]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/view.t
replyto parameter support
[public-inbox.git] / t / view.t
index abd00018e73381f84f4573a342502d24cfbce5a7..1f4ed9373a8857a385cea3a84b78c3226325c0dd 100644 (file)
--- 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' },