cashbook/tests/test_module.py

38 lines
970 B
Python
Raw Normal View History

2023-06-02 18:40:12 +00:00
# -*- coding: utf-8 -*-
# This file is part of the cashbook-module from m-ds for Tryton.
# The COPYRIGHT file at the top level of this repository contains the
# full copyright notices and license terms.
from trytond.tests.test_tryton import ModuleTestCase
from .type import TypeTestCase
from .book import BookTestCase
from .line import LineTestCase
from .splitline import SplitLineTestCase
from .config import ConfigTestCase
from .category import CategoryTestCase
from .reconciliation import ReconTestCase
from .bookingwiz import BookingWizardTestCase
from .valuestore import ValuestoreTestCase
2023-06-02 18:40:12 +00:00
class CashbookTestCase(
ValuestoreTestCase,
2023-06-02 18:40:12 +00:00
BookingWizardTestCase,
ReconTestCase,
CategoryTestCase,
ConfigTestCase,
LineTestCase,
SplitLineTestCase,
BookTestCase,
TypeTestCase,
ModuleTestCase):
'Test cashbook module'
module = 'cashbook'
# end CashbookTestCase
del ModuleTestCase