summaryrefslogtreecommitdiff
path: root/test/regress/854150DF.test
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-02-28 04:02:24 -0600
committerJohn Wiegley <johnw@newartisans.com>2012-02-28 04:02:24 -0600
commit9376b0f7b6a930baa063f0681157c93ba68ed47a (patch)
treef8158a283b149c6bd48611ba554c915e3f6cc265 /test/regress/854150DF.test
parentf4a8f6b2484637efc22c02c20d79ad5034647abc (diff)
downloadfork-ledger-9376b0f7b6a930baa063f0681157c93ba68ed47a.tar.gz
fork-ledger-9376b0f7b6a930baa063f0681157c93ba68ed47a.tar.bz2
fork-ledger-9376b0f7b6a930baa063f0681157c93ba68ed47a.zip
Corrected behavior of >= and <=
Diffstat (limited to 'test/regress/854150DF.test')
-rw-r--r--test/regress/854150DF.test25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/regress/854150DF.test b/test/regress/854150DF.test
new file mode 100644
index 00000000..7133e183
--- /dev/null
+++ b/test/regress/854150DF.test
@@ -0,0 +1,25 @@
+2011-11-10 * test
+ A:B:C 12.50 GBP
+ A:C
+
+test bal --flat -d "depth>=2"
+ 12.50 GBP A:B:C
+ -12.50 GBP A:C
+--------------------
+ 0
+end test
+
+test bal --flat -d "depth>1"
+ 12.50 GBP A:B:C
+ -12.50 GBP A:C
+--------------------
+ 0
+end test
+
+test bal --flat -d "depth>2"
+ 12.50 GBP A:B:C
+end test
+
+test bal --flat -d "depth==2"
+ -12.50 GBP A:C
+end test