mirror of
https://github.com/simonmichael/hledger.git
synced 2025-01-08 11:49:44 +03:00
32 lines
447 B
Plaintext
32 lines
447 B
Plaintext
|
# issue 94: total balance should be that of top-level accounts, with and without --flat
|
||
|
# 1.
|
||
|
hledgerdev -f - balance
|
||
|
<<<
|
||
|
1/1
|
||
|
(a) 1
|
||
|
|
||
|
1/1
|
||
|
(a:aa) 1
|
||
|
>>>
|
||
|
2 a
|
||
|
1 aa
|
||
|
--------------------
|
||
|
2
|
||
|
>>>= 0
|
||
|
|
||
|
# 2.
|
||
|
hledgerdev -f - balance --flat
|
||
|
<<<
|
||
|
1/1
|
||
|
(a) 1
|
||
|
|
||
|
1/1
|
||
|
(a:aa) 1
|
||
|
>>>
|
||
|
2 a
|
||
|
1 a:aa
|
||
|
--------------------
|
||
|
2
|
||
|
>>>= 0
|
||
|
|