diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-07 10:27:29 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:40 -0400 |
commit | 6ec2f6b59be2fe8e621e97a39836e7033fd0f240 (patch) | |
tree | e84984047da8e00d9ac9697fe4ecb354e3190028 /tests/python | |
parent | d8498372037a4d0c272547ae48046b2182bcd4b1 (diff) | |
download | fork-ledger-6ec2f6b59be2fe8e621e97a39836e7033fd0f240.tar.gz fork-ledger-6ec2f6b59be2fe8e621e97a39836e7033fd0f240.tar.bz2 fork-ledger-6ec2f6b59be2fe8e621e97a39836e7033fd0f240.zip |
Reconfigure some of the operators.
Diffstat (limited to 'tests/python')
-rw-r--r-- | tests/python/numerics/BasicAmount.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/python/numerics/BasicAmount.py b/tests/python/numerics/BasicAmount.py index 9654f6a7..07c1f426 100644 --- a/tests/python/numerics/BasicAmount.py +++ b/tests/python/numerics/BasicAmount.py @@ -475,6 +475,11 @@ class BasicAmountTestCase(unittest.TestCase): self.assertTrue(x3 < x1) self.assertTrue(x3 < x4) + self.assertTrue(x1 < 100) + self.assertTrue(x1 < 100.0) + self.assertTrue(100 > x1) + self.assertTrue(100.0 > x1) + self.assertTrue(x0.valid()) self.assertTrue(x1.valid()) self.assertTrue(x2.valid()) |