]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/precheck.t
t/config.t: remove GIT_DIR usage in test
[public-inbox.git] / t / precheck.t
index 974d6a3879d2d0440a56f193f588004b41beca5a..3f2c5d5b76230dab8bee16128da41ddc607d9cab 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2014, Eric Wong <normalperson@yhbt.net> and all contributors
+# Copyright (C) 2014-2015 all contributors <meta@public-inbox.org>
 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
 use strict;
 use warnings;
@@ -12,9 +12,6 @@ sub do_checks {
 
        my $f = Email::Filter->new(data => $s->as_string);
 
-       ok(PublicInbox::MDA->precheck($f, undef),
-               "ORIGINAL_RECIPIENT unset is OK");
-
        my $recipient = 'foo@example.com';
        ok(!PublicInbox::MDA->precheck($f, $recipient),
                "wrong ORIGINAL_RECIPIENT rejected");
@@ -26,6 +23,10 @@ sub do_checks {
        $recipient = 'c@example.com';
        ok(PublicInbox::MDA->precheck($f, $recipient),
                "ORIGINAL_RECIPIENT in Cc: is OK");
+
+       $recipient = [ 'c@example.com', 'd@example.com' ];
+       ok(PublicInbox::MDA->precheck($f, $recipient),
+               "alias list is OK");
 }
 
 {