|
GnuCash 2.4.99
|
00001 import unittest 00002 import os 00003 00004 os.environ["GNC_UNINSTALLED"] = "1" 00005 00006 from test import test_support 00007 00008 from test_book import TestBook 00009 from test_account import TestAccount 00010 from test_split import TestSplit 00011 from test_transaction import TestTransaction 00012 from test_business import TestBusiness 00013 00014 def test_main(): 00015 test_support.run_unittest(TestBook, TestAccount, TestSplit, TestTransaction, TestBusiness) 00016 00017 if __name__ == '__main__': 00018 test_main()
1.7.4