summaryrefslogtreecommitdiff
path: root/tests/python/corelib/numerics/CommodityAmount.py
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-04-27 10:09:00 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:32 -0400
commitd0e9822ed16cb36de4cb1171a89d4049c615f1a0 (patch)
treefa48eba60a56dee5bcf1ebd266d822c5a96e4323 /tests/python/corelib/numerics/CommodityAmount.py
parent0eb597a681115d6d5dd2ea4511fa3b8c7b3d9c9f (diff)
downloadfork-ledger-d0e9822ed16cb36de4cb1171a89d4049c615f1a0.tar.gz
fork-ledger-d0e9822ed16cb36de4cb1171a89d4049c615f1a0.tar.bz2
fork-ledger-d0e9822ed16cb36de4cb1171a89d4049c615f1a0.zip
Moved around the Python code.
Diffstat (limited to 'tests/python/corelib/numerics/CommodityAmount.py')
-rw-r--r--tests/python/corelib/numerics/CommodityAmount.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/python/corelib/numerics/CommodityAmount.py b/tests/python/corelib/numerics/CommodityAmount.py
index 923fab69..80f58b21 100644
--- a/tests/python/corelib/numerics/CommodityAmount.py
+++ b/tests/python/corelib/numerics/CommodityAmount.py
@@ -10,8 +10,6 @@ internalAmount = amount.exact
class CommodityAmountTestCase(unittest.TestCase):
def setUp(self):
- amount.initialize()
-
# Cause the display precision for dollars to be initialized to 2.
x1 = amount("$1.00")
self.assertTrue(x1)
@@ -19,7 +17,6 @@ class CommodityAmountTestCase(unittest.TestCase):
def tearDown(self):
amount.full_strings = False
- amount.shutdown()
def assertValid(self, amt):
self.assertTrue(amt.valid())