trytond-party_company/tests/test_party_company.py

19 lines
600 B
Python

# This file is part party_company module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
import unittest
import trytond.tests.test_tryton
from trytond.tests.test_tryton import ModuleTestCase, with_transaction
from trytond.pool import Pool
class PartyCompanyTestCase(ModuleTestCase):
'Test Party Company module'
module = 'party_company'
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
PartyCompanyTestCase))
return suite