2022-10-19 15:47:47 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2023-06-30 09:21:48 +00:00
|
|
|
# This file is part of the account-invoice-xrechnung-module
|
|
|
|
# from m-ds for Tryton. The COPYRIGHT file at the top level of
|
|
|
|
# this repository contains the full copyright notices and license terms.
|
2022-10-19 15:47:47 +00:00
|
|
|
|
|
|
|
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
|
2023-04-04 11:08:09 +00:00
|
|
|
|
2023-06-30 09:21:48 +00:00
|
|
|
|
2023-04-04 11:08:09 +00:00
|
|
|
del ModuleTestCase
|