Feat: First Commit

This commit is contained in:
2024-06-15 11:00:00 -05:00
commit eb0c8b84e3
136 changed files with 39605 additions and 0 deletions

View 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']

View 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