cashbook_dataexchange/tests/test_module.py

25 lines
661 B
Python
Raw Permalink Normal View History

2023-06-06 13:22:57 +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.modules.cashbook.tests.test_module import CashbookTestCase
from .category import CategoryTestCase
from .party import PartyTestCase
from .transaction import TransactionTestCase
class CashbookExchangeTestCase(
CashbookTestCase,
CategoryTestCase,
PartyTestCase,
2023-06-06 13:56:32 +00:00
TransactionTestCase):
2023-06-06 13:22:57 +00:00
'Test cashbook exchange module'
module = 'cashbook_dataexchange'
# end CashbookExchangeTestCase
2023-06-06 13:56:32 +00:00
del CashbookTestCase