summaryrefslogtreecommitdiff
path: root/tests/python/UnitTests.py
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-04-15 11:20:24 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:35:33 -0400
commitfc6b8837ecdf1891fcd52e0ff60c2b9275acd28e (patch)
tree8a3af63d606404dd36415d45bd79101f071cd98e /tests/python/UnitTests.py
parentbe2726b288aaa2d493dee277c9cf1d3ab3b9de90 (diff)
downloadfork-ledger-fc6b8837ecdf1891fcd52e0ff60c2b9275acd28e.tar.gz
fork-ledger-fc6b8837ecdf1891fcd52e0ff60c2b9275acd28e.tar.bz2
fork-ledger-fc6b8837ecdf1891fcd52e0ff60c2b9275acd28e.zip
Added python tests.
Diffstat (limited to 'tests/python/UnitTests.py')
-rw-r--r--tests/python/UnitTests.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/python/UnitTests.py b/tests/python/UnitTests.py
new file mode 100644
index 00000000..981d2827
--- /dev/null
+++ b/tests/python/UnitTests.py
@@ -0,0 +1,9 @@
+from unittest import TextTestRunner, TestSuite
+
+import tests.python.corelib.numerics.BasicAmount as BasicAmount
+
+suites = [
+ BasicAmount.suite(),
+]
+
+TextTestRunner().run(TestSuite(suites))