Lines 715-721
$cache->clear_from_cache("MarcSubfieldStructure-$frameworkcode");
Link Here
|
715 |
|
715 |
|
716 |
subtest '_koha_notify_reserve() tests' => sub { |
716 |
subtest '_koha_notify_reserve() tests' => sub { |
717 |
|
717 |
|
718 |
plan tests => 3; |
718 |
plan tests => 4; |
719 |
|
719 |
|
720 |
my $branch = $builder->build_object({ |
720 |
my $branch = $builder->build_object({ |
721 |
class => 'Koha::Libraries', |
721 |
class => 'Koha::Libraries', |
Lines 797-805
subtest '_koha_notify_reserve() tests' => sub {
Link Here
|
797 |
borrowernumber => $hold_borrower, |
797 |
borrowernumber => $hold_borrower, |
798 |
})->next(); |
798 |
})->next(); |
799 |
my $email_to_address = $email->to_address(); |
799 |
my $email_to_address = $email->to_address(); |
800 |
is($email_to_address, undef ,"We should not populate the hold message with the email address, sending will do so"); |
800 |
is( |
|
|
801 |
$email_to_address, undef, |
802 |
"We should not populate the hold message with the email address, sending will do so" |
803 |
); |
801 |
my $email_from_address = $email->from_address(); |
804 |
my $email_from_address = $email->from_address(); |
802 |
is($email_from_address,'branch@e.mail',"Library's from address is used for sending"); |
805 |
is( $email_from_address, 'branch@e.mail', "Library's from address is used for sending" ); |
|
|
806 |
my $email_reply_address = $email->reply_address(); |
807 |
is( $email_reply_address, 'branch@reply.to', "Library's reply address is used for reply" ); |
803 |
|
808 |
|
804 |
}; |
809 |
}; |
805 |
|
810 |
|
806 |
- |
|
|