exprt wizard begonnen

This commit is contained in:
Frederik Jaeckel 2022-10-19 17:47:47 +02:00
parent 7b160d84af
commit 00dd70e877
7 changed files with 142 additions and 8 deletions

24
tests/__init__.py Normal file
View file

@ -0,0 +1,24 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import trytond.tests.test_tryton
import unittest
from trytond.modules.account_invoice_xrechnung.tests.test_invoice import InvoiceTestCase
__all__ = ['suite']
class XRechnungTestCase(\
InvoiceTestCase,\
):
'Test xrechnung module'
module = 'account_invoice_xrechnung'
# end XRechnungTestCase
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(XRechnungTestCase))
return suite

19
tests/test_invoice.py Normal file
View file

@ -0,0 +1,19 @@
# -*- 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, with_transaction
class InvoiceTestCase(ModuleTestCase):
'Test invoice module'
module = 'account_invoice_xrechnung'
@with_transaction()
def test_xrechnung(self):
""" run default tests
"""
pass
# end InvoiceTestCase