2023-06-08 12:00:59 +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.
|
|
|
|
|
|
|
|
|
2023-06-08 12:34:56 +00:00
|
|
|
from trytond.modules.cashbook.tests.test_module import CashbookTestCase
|
|
|
|
from trytond.modules.investment.tests.test_module import InvestmentTestCase
|
2023-06-08 12:00:59 +00:00
|
|
|
|
|
|
|
from .yieldtest import YieldTestCase
|
|
|
|
from .book import CbInvTestCase
|
|
|
|
from .reconciliation import ReconTestCase
|
2023-12-30 09:57:17 +00:00
|
|
|
from .valuestore import ValueStoreTestCase
|
2023-06-08 12:00:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
class CashbookInvestmentTestCase(
|
2023-12-30 09:57:17 +00:00
|
|
|
ValueStoreTestCase,
|
2023-06-08 12:00:59 +00:00
|
|
|
CashbookTestCase,
|
|
|
|
InvestmentTestCase,
|
|
|
|
CbInvTestCase,
|
|
|
|
ReconTestCase,
|
|
|
|
YieldTestCase):
|
|
|
|
'Test cashbook-investment module'
|
|
|
|
module = 'cashbook_investment'
|
|
|
|
|
|
|
|
# end CashbookInvestmentTestCase
|
|
|
|
|
|
|
|
|
|
|
|
del CashbookTestCase
|
|
|
|
del InvestmentTestCase
|