hledger/tests/accounts.test
2020-07-07 16:05:05 -07:00

36 lines
389 B
Plaintext

# accounts command
# basic accounts report
<
account a
2018/1/1 ; foo:
(a:aa) 1
$ hledger -f - accounts
a
a:aa
>=
# tree mode
$ hledger -f - accounts --tree
a
aa
>=
# drop in flat mode
$ hledger -f - accounts --flat --drop 1
...
aa
>=
# drop in tree mode
$ hledger -f - accounts --tree --drop 1
...
aa
>=
# filtering transactions by tag
$ hledger -f - accounts tag:foo
a:aa
>=