ledger/test/UnitTests.py
2008-08-06 23:21:06 -04:00

9 lines
175 B
Python

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