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