Revision e10fb8ac
Von Jan Büren vor 11 Monaten hinzugefügt
t/db_helper/payment.t | ||
---|---|---|
is($invoice2->within_skonto_period(transdate => DateTime->now()->add(days => 1)), 1, "one day after invdate is skontoable");
|
||
is($invoice2->within_skonto_period(transdate => DateTime->now()->add(days => 4)), 1, "four days after invdate is skontoable");
|
||
|
||
throws_ok{
|
||
$invoice2->within_skonto_period(transdate => DateTime->now()->add(days => 6));
|
||
} qr /The 'transdate' parameter .* to SL::DB::Helper::Payment::within_skonto_period did not pass the 'is within skonto period' callback/, "One day after skonto date throws correct error message";
|
||
is($invoice2->within_skonto_period(transdate => DateTime->now()->add(days => 6)), ''); # not within skonto period
|
||
|
||
}
|
||
|
Auch abrufbar als: Unified diff
PH->within_skonto_period refactored. Liefert jetzt undef oder 1 zurück