Feat: First Commit
This commit is contained in:
6
modules/account_co_reports/tests/__init__.py
Normal file
6
modules/account_co_reports/tests/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
try:
|
||||
from trytond.modules.account_co_reports.tests.test_account_co_reports import suite # noqa: E501
|
||||
except ImportError:
|
||||
from .test_account_co_reports import suite
|
||||
|
||||
__all__ = ['suite']
|
||||
17
modules/account_co_reports/tests/test_account_col_reports.py
Normal file
17
modules/account_co_reports/tests/test_account_col_reports.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import unittest
|
||||
|
||||
|
||||
from trytond.tests.test_tryton import ModuleTestCase
|
||||
from trytond.tests.test_tryton import suite as test_suite
|
||||
|
||||
|
||||
class AccountCoReportsTestCase(ModuleTestCase):
|
||||
'Test Account Co Reports module'
|
||||
module = 'account_co_reports'
|
||||
|
||||
|
||||
def suite():
|
||||
suite = test_suite()
|
||||
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
|
||||
AccountCoReportsTestCase))
|
||||
return suite
|
||||
Reference in New Issue
Block a user