line, book - wf + tests

This commit is contained in:
Frederik Jaeckel 2022-08-08 14:31:42 +02:00
parent ba442b726e
commit 654e9d2ee7
25 changed files with 786 additions and 160 deletions

View file

@ -4,14 +4,17 @@
import trytond.tests.test_tryton
import unittest
from trytond.modules.cashbook.tests.test_accounttype import AccounttypeTestCase
from trytond.modules.cashbook.tests.test_type import TypeTestCase
from trytond.modules.cashbook.tests.test_book import BookTestCase
from trytond.modules.cashbook.tests.test_line import LineTestCase
__all__ = ['suite']
class CashbookTestCase(\
AccounttypeTestCase,
LineTestCase,
BookTestCase,
TypeTestCase,
):
'Test cashbook module'
module = 'cashbook'