ledger/test/regress/1072.test
Martin Michlmayr 96223f9e20 Add ISO 8601 date as recognized date string
Dates specified via --begin and --end are converted to a value expression
using an ISO 8601 (yyyy-mm-dd) date, but this date was not recognized by
ledger.

Bug fix for #1072
2014-10-02 18:33:26 -04:00

31 lines
1.1 KiB
Text

--input-date-format %d/%m/%y
--date-format %d/%m/%y
1/1/14 * Test
A $10
B
12/1/14 * Test
A $20
B
test --input-date-format %d/%m/%y reg --begin 2/1/13
01/01/14 Test A $10 $10
B $-10 0
12/01/14 Test A $20 $20
B $-20 0
end test
test --input-date-format %d/%m/%y reg --begin 1/1/14
01/01/14 Test A $10 $10
B $-10 0
12/01/14 Test A $20 $20
B $-20 0
end test
test --input-date-format %d/%m/%y reg --begin 2/1/14
12/01/14 Test A $20 $20
B $-20 0
end test