document_incoming_invoice_xml/tests/test_module.py

21 lines
541 B
Python
Raw Normal View History

2025-01-06 16:52:48 +00:00
# -*- coding: utf-8 -*-
# This file is part of the document-incoming-invoice-xml-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 .document import DocumentTestCase
class XmlIncomingTestCase(
DocumentTestCase,
ModuleTestCase):
'Test document incoming xml converter module'
module = 'document_incoming_invoice_xml'
# end XmlIncomingTestCase
del ModuleTestCase