29 lines
754 B
Python
29 lines
754 B
Python
![]() |
# -*- 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 import CashbookTestCase
|
||
|
from trytond.modules.investment.tests import InvestmentTestCase
|
||
|
|
||
|
from .yieldtest import YieldTestCase
|
||
|
from .book import CbInvTestCase
|
||
|
from .reconciliation import ReconTestCase
|
||
|
|
||
|
|
||
|
class CashbookInvestmentTestCase(
|
||
|
CashbookTestCase,
|
||
|
InvestmentTestCase,
|
||
|
CbInvTestCase,
|
||
|
ReconTestCase,
|
||
|
YieldTestCase):
|
||
|
'Test cashbook-investment module'
|
||
|
module = 'cashbook_investment'
|
||
|
|
||
|
# end CashbookInvestmentTestCase
|
||
|
|
||
|
|
||
|
del CashbookTestCase
|
||
|
del InvestmentTestCase
|