account_invoice_xrechnung/tests/__init__.py

20 lines
503 B
Python
Raw Permalink Normal View History

2023-06-30 09:21:48 +00:00
# -*- coding: utf-8 -*-
# This file is part of the account-invoice-xrechnung-module
# from m-ds for Tryton. The COPYRIGHT file at the top level of
2022-10-19 15:47:47 +00:00
# this repository contains the full copyright notices and license terms.
import trytond.tests.test_tryton
import unittest
2023-06-30 09:21:48 +00:00
from .test_invoice import InvoiceTestCase
2022-10-19 15:47:47 +00:00
__all__ = ['suite']
def suite():
suite = trytond.tests.test_tryton.suite()
2023-06-30 09:21:48 +00:00
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
InvoiceTestCase))
2022-10-19 15:47:47 +00:00
return suite