;dev: accounts: test cleanup

This commit is contained in:
Simon Michael 2022-02-01 18:03:46 -10:00
parent 0f8ede3038
commit dbbd300aa2

View File

@ -1,6 +1,6 @@
# accounts command # accounts command
# basic accounts report # 1. basic accounts report
< <
account a account a
@ -10,26 +10,23 @@ account a
$ hledger -f - accounts $ hledger -f - accounts
a a
a:aa a:aa
>=
# tree mode # 2. tree mode
$ hledger -f - accounts --tree $ hledger -f - accounts --tree
a a
aa aa
>=
# drop in flat mode # 3. drop in flat mode
$ hledger -f - accounts --flat --drop 1 $ hledger -f - accounts --flat --drop 1
... ...
aa aa
>=
# drop in tree mode # 4. drop in tree mode
$ hledger -f - accounts --tree --drop 1 $ hledger -f - accounts --tree --drop 1
... ...
aa aa
>=
# filtering transactions by tag # 5. filtering transactions by tag
$ hledger -f - accounts tag:foo $ hledger -f - accounts tag:foo
a:aa a:aa
>=