X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=t%2Freply.t;h=7319e2337dd18b95ab3c623b995ef25f8e037bd4;hp=bddabc3d5014b71fde780b58f34846f8358a687b;hb=4eee5af6011cc8cdefb66c9729952c7eff5c0b0b;hpb=9bd675d33ad1e49bd2ebe12a1d216216e61380de diff --git a/t/reply.t b/t/reply.t index bddabc3d..7319e233 100644 --- a/t/reply.t +++ b/t/reply.t @@ -1,9 +1,10 @@ -# Copyright (C) 2017-2019 all contributors +#!perl -w +# Copyright (C) 2017-2021 all contributors # License: AGPL-3+ use strict; -use warnings; use Test::More; -use Email::MIME; +use PublicInbox::Config; +use PublicInbox::Eml; use_ok 'PublicInbox::Reply'; my @q = ( @@ -15,11 +16,11 @@ my @q = ( while (@q) { my $input = shift @q; my $expect = shift @q; - my $res = PublicInbox::Reply::squote_maybe($input); + my $res = PublicInbox::Config::squote_maybe($input); is($res, $expect, "quote $input => $res"); } -my $mime = Email::MIME->new(<<'EOF'); +my $mime = PublicInbox::Eml->new(<<'EOF'); From: from To: to Cc: cc@example.com @@ -36,7 +37,7 @@ my $exp = [ '--in-reply-to=blah@example.com', '--to=from@example.com', '--cc=cc@example.com', - '--cc=to@example.com' + '--cc=to@example.com', ]; is_deeply($arg, $exp, 'default reply is to :all'); @@ -53,7 +54,7 @@ $exp = [ '--in-reply-to=blah@example.com', '--to=primary@example.com', '--cc=cc@example.com', - '--cc=to@example.com' + '--cc=to@example.com', ]; $ibx->{replyto} = ':list,Cc,To'; ($arg, $link) = PublicInbox::Reply::mailto_arg_link($ibx, $hdr); @@ -71,7 +72,7 @@ $exp = [ '--in-reply-to=blah@example.com', '--to=from@example$(echo .)com', '--cc=cc@example$(echo .)com', - '--cc=to@example$(echo .)com' + '--cc=to@example$(echo .)com', ]; is_deeply($arg, $exp, 'address obfuscation works'); is($link, '', 'no mailto: link given');