X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fview.t;h=22f5c7e496afb8b09fd83a3334da8345db092e91;hb=3d41aa23f35501ca92aab8aa42980fa73f7fa74f;hp=2181b5efb34184a1a97bcfae8fa08d9ca0dff431;hpb=92f27ed0be327ab6acb61aeedf7a77702cc6c25f;p=public-inbox.git diff --git a/t/view.t b/t/view.t index 2181b5ef..22f5c7e4 100644 --- a/t/view.t +++ b/t/view.t @@ -1,5 +1,5 @@ -# Copyright (C) 2013-2015 all contributors -# License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt) +# Copyright (C) 2013-2018 all contributors +# License: AGPL-3.0+ use strict; use warnings; use Test::More; @@ -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::View::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' },