diff options
author | John Wiegley <johnw@newartisans.com> | 2007-04-17 07:33:36 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:35:36 -0400 |
commit | 0f2cad4cab7ef99e1ad33be34ea813213da7288d (patch) | |
tree | 0dbd64dfdb1022d811d2dfdc5f3693f5faafafb8 /tests/python/UnitTests.py | |
parent | 2e3082e734362fb934ff8f308fe9fd9f85c35032 (diff) | |
download | ledger-0f2cad4cab7ef99e1ad33be34ea813213da7288d.tar.gz ledger-0f2cad4cab7ef99e1ad33be34ea813213da7288d.tar.bz2 ledger-0f2cad4cab7ef99e1ad33be34ea813213da7288d.zip |
Got most of the commodity tests working, save multiplication and division.
Diffstat (limited to 'tests/python/UnitTests.py')
-rw-r--r-- | tests/python/UnitTests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/python/UnitTests.py b/tests/python/UnitTests.py index 981d2827..7a10c9e6 100644 --- a/tests/python/UnitTests.py +++ b/tests/python/UnitTests.py @@ -1,9 +1,11 @@ from unittest import TextTestRunner, TestSuite import tests.python.corelib.numerics.BasicAmount as BasicAmount +import tests.python.corelib.numerics.CommodityAmount as CommodityAmount suites = [ BasicAmount.suite(), + CommodityAmount.suite(), ] TextTestRunner().run(TestSuite(suites)) |