splitbuchungen + test

This commit is contained in:
Frederik Jaeckel 2022-08-25 15:55:24 +02:00
parent bdbc9dc27f
commit aefb5cde51
9 changed files with 618 additions and 124 deletions

View file

@ -7,6 +7,7 @@ import unittest
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
from trytond.modules.cashbook.tests.test_splitline import SplitLineTestCase
from trytond.modules.cashbook.tests.test_config import ConfigTestCase
from trytond.modules.cashbook.tests.test_category import CategoryTestCase
from trytond.modules.cashbook.tests.test_reconciliation import ReconTestCase
@ -19,6 +20,7 @@ class CashbookTestCase(\
CategoryTestCase,\
ConfigTestCase,\
LineTestCase,
SplitLineTestCase,
BookTestCase,
TypeTestCase,
):