diff options
author | John Wiegley <johnw@newartisans.com> | 2009-03-08 04:15:48 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-03-08 04:15:48 -0400 |
commit | 77faaa926f06dc10cab65d08e0d35836d4a273a6 (patch) | |
tree | 4ae29e114cdcb7e4f858c0cd9817f12d9c3543c9 /test/baseline/opt-depth_flat.test | |
parent | dd6c0ae80dadc0965d9b723ed6a7be9323beec52 (diff) | |
download | fork-ledger-77faaa926f06dc10cab65d08e0d35836d4a273a6.tar.gz fork-ledger-77faaa926f06dc10cab65d08e0d35836d4a273a6.tar.bz2 fork-ledger-77faaa926f06dc10cab65d08e0d35836d4a273a6.zip |
Rewrote the balance report again, to fix --depth
Diffstat (limited to 'test/baseline/opt-depth_flat.test')
-rw-r--r-- | test/baseline/opt-depth_flat.test | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/test/baseline/opt-depth_flat.test b/test/baseline/opt-depth_flat.test new file mode 100644 index 00000000..c43c1c26 --- /dev/null +++ b/test/baseline/opt-depth_flat.test @@ -0,0 +1,60 @@ +bal --depth 1 --flat +<<< +2008/01/01 January + Expenses:Books $10.00 + Assets:Cash + +2008/01/01 January + Expenses:One:Books $10.00 + Expenses:One:Two:Books $10.00 + Expenses:One:Two:Three:Books $10.00 + Assets:Cash + +2008/01/01 January + Assets:Cash 0 + Income:Books + +2008/01/01 January + Assets:Cash + Income:One:Books $-10.00 + Income:One:Two:Books $-10.00 + Income:One:Two:Three:Books $-10.00 +>>>1 +>>>2 +=== 0 +bal --depth 2 --flat +>>>1 + $-10.00 Assets:Cash + $10.00 Expenses:Books +>>>2 +=== 0 +bal --depth 3 --flat +>>>1 + $-10.00 Assets:Cash + $10.00 Expenses:Books + $10.00 Expenses:One:Books + $-10.00 Income:One:Books +>>>2 +=== 0 +bal --depth 4 --flat +>>>1 + $-10.00 Assets:Cash + $10.00 Expenses:Books + $10.00 Expenses:One:Books + $10.00 Expenses:One:Two:Books + $-10.00 Income:One:Books + $-10.00 Income:One:Two:Books +>>>2 +=== 0 +bal --depth 5 --flat +>>>1 + $-10.00 Assets:Cash + $10.00 Expenses:Books + $10.00 Expenses:One:Books + $10.00 Expenses:One:Two:Books + $10.00 Expenses:One:Two:Three:Books + $-10.00 Income:One:Books + $-10.00 Income:One:Two:Books + $-10.00 Income:One:Two:Three:Books +>>>2 +=== 0 |