2023-06-30 09:36:17 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# This file is part of the edocument-module for Tryton from m-ds.de.
|
|
|
|
# The COPYRIGHT file at the top level of this repository contains the
|
|
|
|
# full copyright notices and license terms.
|
2022-10-17 15:20:25 +00:00
|
|
|
|
|
|
|
import trytond.tests.test_tryton
|
|
|
|
import unittest
|
|
|
|
|
2023-06-30 09:36:17 +00:00
|
|
|
from .test_edocument import EdocTestCase
|
2022-10-17 15:20:25 +00:00
|
|
|
|
|
|
|
__all__ = ['suite']
|
|
|
|
|
|
|
|
|
|
|
|
def suite():
|
|
|
|
suite = trytond.tests.test_tryton.suite()
|
2023-06-30 09:36:17 +00:00
|
|
|
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
|
|
|
|
EdocTestCase))
|
2022-10-17 15:20:25 +00:00
|
|
|
return suite
|