-trytond-company_subdivisio.../tests/test_company_subdivision_report.py
2015-12-01 11:06:04 +01:00

18 lines
618 B
Python

# This file is part of the company_subdivision_report 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
class CompanySubdivisionReportTestCase(ModuleTestCase):
'Test Company Subdivision Report module'
module = 'company_subdivision_report'
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
CompanySubdivisionReportTestCase))
return suite