prepare test for porting
This commit is contained in:
parent
619a17bcd6
commit
3467c08895
16 changed files with 690 additions and 373 deletions
37
tests/test_module.py
Normal file
37
tests/test_module.py
Normal file
|
@ -0,0 +1,37 @@
|
|||
# -*- 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 .currency import CurrencyTestCase
|
||||
|
||||
|
||||
class CashbookTestCase(
|
||||
CurrencyTestCase,
|
||||
BookingWizardTestCase,
|
||||
ReconTestCase,
|
||||
CategoryTestCase,
|
||||
ConfigTestCase,
|
||||
LineTestCase,
|
||||
SplitLineTestCase,
|
||||
BookTestCase,
|
||||
TypeTestCase,
|
||||
ModuleTestCase):
|
||||
'Test cashbook module'
|
||||
module = 'cashbook'
|
||||
|
||||
# end CashbookTestCase
|
||||
|
||||
|
||||
del ModuleTestCase
|
Loading…
Add table
Add a link
Reference in a new issue