20 lines
516 B
Python
20 lines
516 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.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
|