X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fview.t;h=8ae422569a91e2efa054742ea6c1dbcf3e04aec2;hb=7b5ea579e6a9490a4a38958acac8e078d805eec7;hp=abd00018e73381f84f4573a342502d24cfbce5a7;hpb=92afb41e15dfdcda291b432173bd49ddfc49614a;p=public-inbox.git diff --git a/t/view.t b/t/view.t index abd00018..8ae42256 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::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' }, @@ -28,6 +16,7 @@ my $ctx = { base_url => sub { 'http://example.com/' }, cloneurl => sub {[]}, nntp_url => sub {[]}, + max_git_part => sub { undef }, description => sub { '' }), }; $ctx->{-inbox}->{-primary_address} = 'test@example.com';