summaryrefslogtreecommitdiff
path: root/test/python/PostingTest.py
blob: f191253e22b12d294a990e1d3e6d7c156656a702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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()