summaryrefslogtreecommitdiff
path: root/test/python/UnitTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/UnitTests.py')
-rw-r--r--test/python/UnitTests.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/python/UnitTests.py b/test/python/UnitTests.py
new file mode 100644
index 00000000..388e2229
--- /dev/null
+++ b/test/python/UnitTests.py
@@ -0,0 +1,12 @@
+from unittest import TextTestRunner, TestSuite
+
+import JournalTest
+import TransactionTest
+import PostingTest
+
+suites = [
+ JournalTest.suite(),
+ TransactionTest.suite(),
+ PostingTest.suite()
+]
+TextTestRunner().run(TestSuite(suites))