summaryrefslogtreecommitdiff
path: root/test/python/JournalTest.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/JournalTest.py')
-rw-r--r--test/python/JournalTest.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/python/JournalTest.py b/test/python/JournalTest.py
new file mode 100644
index 00000000..66447f87
--- /dev/null
+++ b/test/python/JournalTest.py
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+
+import unittest
+import exceptions
+import operator
+
+from ledger import *
+from StringIO import *
+from datetime import *
+
+class JournalTestCase(unittest.TestCase):
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def test_(self):
+ pass
+
+def suite():
+ return unittest.TestLoader().loadTestsFromTestCase(JournalTestCase)
+
+if __name__ == '__main__':
+ unittest.main()