25 lines
428 B
Python
25 lines
428 B
Python
# -*- 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()
|