From d949c4fc20882397b24cbb28fd6f20c7ecb102be Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 22 Mar 2021 14:47:11 -0300 Subject: [PATCH] Bug 28017: Regression tests Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart --- t/Koha/Email.t | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/t/Koha/Email.t b/t/Koha/Email.t index b7a171986a..d4b178f213 100755 --- a/t/Koha/Email.t +++ b/t/Koha/Email.t @@ -28,7 +28,7 @@ use_ok('Koha::Email'); subtest 'create() tests' => sub { - plan tests => 23; + plan tests => 24; t::lib::Mocks::mock_preference( 'SendAllEmailsTo', undef ); @@ -62,6 +62,16 @@ subtest 'create() tests' => sub { like( $email->email->content_type, qr|charset="?iso-8859-1"?|, "Charset set correctly"); like( $email->email->header('Message-ID'), qr/\<.*@.*\>/, 'Value set correctly' ); + $email = Koha::Email->create( + { + from => 'from@example.com', + to => 'to@example.com', + bcc => 'root@localhost', + } + ); + + is( $email->email->header('Bcc'), 'root@localhost', 'Non-FQDN (@localhost) supported' ); + t::lib::Mocks::mock_preference( 'SendAllEmailsTo', 'catchall@example.com' ); t::lib::Mocks::mock_preference( 'ReplytoDefault', 'replytodefault@example.com' ); t::lib::Mocks::mock_preference( 'ReturnpathDefault', 'returnpathdefault@example.com' ); -- 2.39.2