diff options
author | Mark Wells <mark@freeside.biz> | 2016-04-27 13:35:38 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-04-27 13:37:32 -0700 |
commit | 2d0a76ceffbb2de6638f4a13be90c72fa2b86931 (patch) | |
tree | af505d8316d2f731584048b0d0a88d5184a334ae /FS/t | |
parent | 5394b0cd9051de95e17a51e5d2a63cb42ec86301 (diff) |
fix DST in prorate test
Diffstat (limited to 'FS/t')
-rwxr-xr-x | FS/t/suite/02-bill_customer.t | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/FS/t/suite/02-bill_customer.t b/FS/t/suite/02-bill_customer.t index e3f6406f4..3fa908e96 100755 --- a/FS/t/suite/02-bill_customer.t +++ b/FS/t/suite/02-bill_customer.t @@ -23,9 +23,10 @@ ok($error eq '', "billed on $date") or diag($error); my $cust_bill = $return[0]; isa_ok($cust_bill, 'FS::cust_bill'); -# Apr 1 - Mar 20 = 12 days -# 12/31 * $30 = 11.61 recurring, + 20.00 setup -ok( $cust_bill->charged == 31.61, 'prorated first month correctly' ); +# Apr 1 - Mar 20 = 12 days = 288 hours +# Apr 1 - Mar 1 = 31 days - 1 hour (DST) = 743 hours +# 288/743 * $30 = $11.63 recur + $20.00 setup +ok( $cust_bill->charged == 31.63, 'prorated first month correctly' ); # the package bill date should now be 2016-04-01 my @lineitems = $cust_bill->cust_bill_pkg; |