diff options
Diffstat (limited to 't/tests')
-rw-r--r-- | t/tests/sietima/role/nomail.t | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/t/tests/sietima/role/nomail.t b/t/tests/sietima/role/nomail.t new file mode 100644 index 0000000..df4d106 --- /dev/null +++ b/t/tests/sietima/role/nomail.t @@ -0,0 +1,24 @@ +#!perl +use strict; +use warnings; +use 5.020; +use lib 't/lib'; +use Test::Sietima; + +my $s = make_sietima( + with_traits => ['NoMail'], + subscribers => [ + { + raw_address => 'one@users.example.com', + wants_mail => 0, + }, + 'two@users.example.com', + ], +); + +test_sending( + sietima => $s, + to => ['two@users.example.com'], +); + +done_testing; |