@@ -, +, @@ be true --- t/db_dependent/Koha/Patrons.t | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/t/db_dependent/Koha/Patrons.t +++ a/t/db_dependent/Koha/Patrons.t @@ -184,7 +184,7 @@ subtest 'is_expired' => sub { }; subtest 'is_going_to_expired' => sub { - plan tests => 8; + plan tests => 9; my $patron = $builder->build({ source => 'Borrower' }); $patron = Koha::Patrons->find( $patron->{borrowernumber} ); $patron->dateexpiry( undef )->store; @@ -216,6 +216,10 @@ subtest 'is_going_to_expired' => sub { $patron->dateexpiry( dt_from_string->add( days => 20 ) )->store; is( $patron->is_going_to_expired, 0, 'Patron should not be considered going to expire if dateexpiry is 20 days before and pref is 10'); + t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 20); + $patron->dateexpiry( dt_from_string->add( days => 10 ) )->store; + is( $patron->is_going_to_expired, 1, 'Patron should be considered going to expire if dateexpiry is 10 days before and pref is 20'); + $patron->delete; }; --