diff options
author | John Wiegley <johnw@newartisans.com> | 2008-08-06 18:23:50 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-08-06 18:23:50 -0400 |
commit | 54f2a8012f206429790df35d28b2da0586d2ce6b (patch) | |
tree | 6541a21a93c6413c1712887615034f38dfcc66b8 /test/python/UnitTests.py | |
parent | 0d6e72adbbf8414b3b6cf5922ab53519e2dacadd (diff) | |
download | fork-ledger-54f2a8012f206429790df35d28b2da0586d2ce6b.tar.gz fork-ledger-54f2a8012f206429790df35d28b2da0586d2ce6b.tar.bz2 fork-ledger-54f2a8012f206429790df35d28b2da0586d2ce6b.zip |
Moved several tests around again (python/test -> test/python).
Diffstat (limited to 'test/python/UnitTests.py')
-rw-r--r-- | test/python/UnitTests.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/python/UnitTests.py b/test/python/UnitTests.py new file mode 100644 index 00000000..843e9fc1 --- /dev/null +++ b/test/python/UnitTests.py @@ -0,0 +1,9 @@ +from unittest import TextTestRunner, TestSuite + +import tests.python.numerics.t_amount as t_amount + +suites = [ + t_amount.suite(), +] + +TextTestRunner().run(TestSuite(suites)) |