2011-04-20 01:40:59 +04:00
|
|
|
# invalid dates should be rejected
|
|
|
|
# 1. valid month and day, but flipped
|
2010-05-22 04:52:45 +04:00
|
|
|
bin/hledger -f- print
|
2010-04-06 06:31:47 +04:00
|
|
|
<<<
|
|
|
|
2010/31/12 x
|
|
|
|
a 1
|
|
|
|
b
|
2011-04-22 17:55:42 +04:00
|
|
|
>>>2 /bad date/
|
2010-04-06 06:31:47 +04:00
|
|
|
>>>= 1
|
2011-04-20 01:40:59 +04:00
|
|
|
# 2. too-large day
|
2010-05-22 04:52:45 +04:00
|
|
|
bin/hledger -f- print
|
2010-04-06 06:31:47 +04:00
|
|
|
<<<
|
|
|
|
2010/12/32 x
|
|
|
|
a 1
|
|
|
|
b
|
2011-04-22 17:55:42 +04:00
|
|
|
>>>2 /bad date/
|
2010-04-06 06:31:47 +04:00
|
|
|
>>>= 1
|
2011-04-20 01:40:59 +04:00
|
|
|
# 3. 29th feb on leap year should be ok
|
2011-04-20 00:15:14 +04:00
|
|
|
bin/hledger -f- print
|
|
|
|
<<<
|
2011-04-20 01:40:59 +04:00
|
|
|
2000/2/29 x
|
2011-04-20 00:15:14 +04:00
|
|
|
a 1
|
|
|
|
b
|
|
|
|
>>>
|
2011-04-20 01:40:59 +04:00
|
|
|
2000/02/29 x
|
2011-04-20 00:15:14 +04:00
|
|
|
a 1
|
|
|
|
b -1
|
2011-04-20 01:40:59 +04:00
|
|
|
|
2011-04-20 00:15:14 +04:00
|
|
|
>>>= 0
|
2011-04-22 17:55:42 +04:00
|
|
|
# 4. 29th feb on non-leap year should fail
|
2011-04-20 00:15:14 +04:00
|
|
|
bin/hledger -f- print
|
|
|
|
<<<
|
2011-04-20 01:40:59 +04:00
|
|
|
2001/2/29 x
|
2011-04-20 00:15:14 +04:00
|
|
|
a 1
|
|
|
|
b
|
2011-04-22 17:55:42 +04:00
|
|
|
>>>2 /bad date/
|
2011-04-20 00:15:14 +04:00
|
|
|
>>>= 1
|