mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-10 14:16:41 +03:00
15 lines
251 B
Plaintext
15 lines
251 B
Plaintext
|
# 1. empty file
|
||
|
bin/hledger -f- stats
|
||
|
<<<
|
||
|
>>> /Accounts.* 0 \(depth 0\)/
|
||
|
>>>=0
|
||
|
|
||
|
# 2. included files should be listed in parse order
|
||
|
touch a b; bin/hledger -f- stats; rm -f a b
|
||
|
<<<
|
||
|
include a
|
||
|
include b
|
||
|
>>> /Included journal files *: *\.\/a/
|
||
|
>>>2
|
||
|
>>>=0
|