Test: Lieferantengutschrift verbuchen, auch die Gegenseite Banktransaktion prüfen
authorJan Büren <jan@kivitendo-premium.de>
Thu, 23 Mar 2017 13:37:07 +0000 (14:37 +0100)
committerJan Büren <jan@kivitendo-premium.de>
Thu, 23 Mar 2017 13:37:07 +0000 (14:37 +0100)
Die Zahlung wurde korrekt gebucht, allerdings erwartet kivitendo jetzt auch
Änderungen in der bank_transactions invoice_amount, in anderen Testfällen
(test1) wird diese auch überprüft.

t/bank/bank_transactions.t

index 7b482c4..ebecb3d 100644 (file)
@@ -1,4 +1,4 @@
-use Test::More tests => 74;
+use Test::More tests => 75;
 
 use strict;
 
@@ -477,10 +477,12 @@ sub test_neg_ap_transaction {
   save_btcontroller_to_string();
 
   $invoice->load;
+  $bt->load;
 
   is($invoice->amount   , '-23.80000', "$testname: amount ok");
   is($invoice->netamount, '-20.00000', "$testname: netamount ok");
   is($invoice->paid     , '-23.80000', "$testname: paid ok");
+  is($bt->invoice_amount, '23.80000', "$testname: bt invoice amount for ap was assigned");
 
   return $invoice;
 };