Browse Source

Bug 22521: (QA follow-up) Update 'Offsets' test

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
19.05.x
Martin Renvoize 5 years ago
committed by Nick Clemens
parent
commit
855ecd9f6e
  1. 8
      t/db_dependent/Koha/Account/Offsets.t

8
t/db_dependent/Koha/Account/Offsets.t

@ -44,17 +44,17 @@ subtest 'total_outstanding() tests' => sub {
my $amount_5 = 500;
my $offset_1 = Koha::Account::Offset->new(
{ type => 'Fine', amount => $amount_1, credit_id => $line->id } )->store;
{ type => 'OVERDUE', amount => $amount_1, credit_id => $line->id } )->store;
my $offset_2 = Koha::Account::Offset->new(
{ type => 'Fine', amount => $amount_2, credit_id => $line->id } )->store;
{ type => 'OVERDUE', amount => $amount_2, credit_id => $line->id } )->store;
my $offset_3 = Koha::Account::Offset->new(
{ type => 'Payment', amount => $amount_3, credit_id => $line->id } )->store;
my $offset_4 = Koha::Account::Offset->new(
{ type => 'Payment', amount => $amount_4, credit_id => $line->id } )->store;
my $offset_5 = Koha::Account::Offset->new(
{ type => 'Fine', amount => $amount_5, credit_id => $line->id } )->store;
{ type => 'OVERDUE', amount => $amount_5, credit_id => $line->id } )->store;
my $debits = Koha::Account::Offsets->search( { type => 'Fine', credit_id => $line->id } );
my $debits = Koha::Account::Offsets->search( { type => 'OVERDUE', credit_id => $line->id } );
is( $debits->total, $amount_1 + $amount_2 + $amount_5 );
my $credits = Koha::Account::Offsets->search( { type => 'Payment', credit_id => $line->id } );

Loading…
Cancel
Save