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.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.test')
-rw-r--r-- | test/baseline/opt-depth.test | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/test/baseline/opt-depth.test b/test/baseline/opt-depth.test new file mode 100644 index 00000000..e8dc2e1d --- /dev/null +++ b/test/baseline/opt-depth.test @@ -0,0 +1,83 @@ +bal --depth 1 +<<< +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 + $-10.00 Assets + $40.00 Expenses + $-30.00 Income +>>>2 +=== 0 +bal --depth 2 +>>>1 + $-10.00 Assets:Cash + $40.00 Expenses + $10.00 Books + $30.00 One + $-30.00 Income:One +>>>2 +=== 0 +bal --depth 3 +>>>1 + $-10.00 Assets:Cash + $40.00 Expenses + $10.00 Books + $30.00 One + $10.00 Books + $20.00 Two + $-30.00 Income:One + $-10.00 Books + $-20.00 Two +>>>2 +=== 0 +bal --depth 4 +>>>1 + $-10.00 Assets:Cash + $40.00 Expenses + $10.00 Books + $30.00 One + $10.00 Books + $20.00 Two + $10.00 Books + $10.00 Three + $-30.00 Income:One + $-10.00 Books + $-20.00 Two + $-10.00 Books + $-10.00 Three +>>>2 +=== 0 +bal --depth 5 +>>>1 + $-10.00 Assets:Cash + $40.00 Expenses + $10.00 Books + $30.00 One + $10.00 Books + $20.00 Two + $10.00 Books + $10.00 Three:Books + $-30.00 Income:One + $-10.00 Books + $-20.00 Two + $-10.00 Books + $-10.00 Three:Books +>>>2 +=== 0 |