ledger/test/UnitTests.py
John Wiegley 79a7976600 Reorganized Ledger so that it builds as 7 separate libraries. This is mainly
to prove to myself that it has proper decoupling between prior code areas.
2009-01-25 01:10:05 -04:00

9 lines
170 B
Python

from unittest import TextTestRunner, TestSuite
import test.python.math.t_amount as t_amount
suites = [
t_amount.suite(),
]
TextTestRunner().run(TestSuite(suites))