X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fprecheck.t;h=bcd2091037b3b312e27d549ed6e60e05237644c2;hb=dde1b083571ed893cbb1990f01f9e11ed804cba5;hp=6c353d8d8ccf5d2df38f9f1a82b0fb1547078786;hpb=41aa4756879765d0c6d4d6e8754e0037b1a56fcc;p=public-inbox.git diff --git a/t/precheck.t b/t/precheck.t index 6c353d8d..bcd20910 100644 --- a/t/precheck.t +++ b/t/precheck.t @@ -1,5 +1,5 @@ -# Copyright (C) 2014-2015 all contributors -# License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt) +# Copyright (C) 2014-2019 all contributors +# License: AGPL-3.0+ use strict; use warnings; use Test::More; @@ -26,6 +26,23 @@ sub do_checks { "alias list is OK"); } +{ + my $s = Email::Simple->create( + header => [ + From => 'abc@example.com', + To => 'abc@example.com', + Cc => 'c@example.com, another-list@example.com', + 'Content-Type' => 'text/plain', + Subject => 'list is fine', + 'Message-ID' => '', + Date => 'Wed, 09 Apr 2014 01:28:34 +0000', + ], + body => "hello world\n", + ); + my $addr = [ 'c@example.com', 'd@example.com' ]; + ok(PublicInbox::MDA->precheck($s, $addr), 'Cc list is OK'); +} + { do_checks(Email::Simple->create( header => [