2013-11-13 15:51:44 +00:00
|
|
|
#!@-PYTHON-@
|
|
|
|
|
2008-07-07 21:11:02 +00:00
|
|
|
import unittest
|
2011-12-05 00:07:16 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
os.environ["GNC_UNINSTALLED"] = "1"
|
2008-07-07 21:11:02 +00:00
|
|
|
|
|
|
|
from test import test_support
|
|
|
|
|
|
|
|
from test_book import TestBook
|
|
|
|
from test_account import TestAccount
|
|
|
|
from test_split import TestSplit
|
|
|
|
from test_transaction import TestTransaction
|
2011-09-29 11:00:19 +00:00
|
|
|
from test_business import TestBusiness
|
2017-05-16 17:11:28 +01:00
|
|
|
from test_commodity import TestCommodity, TestCommodityNamespace
|
2008-07-07 21:11:02 +00:00
|
|
|
|
|
|
|
def test_main():
|
2017-05-16 17:11:28 +01:00
|
|
|
test_support.run_unittest(TestBook, TestAccount, TestSplit, TestTransaction, TestBusiness, TestCommodity, TestCommodityNamespace)
|
2008-07-07 21:11:02 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_main()
|