1
0
Fork 0
mirror of synced 2023-12-14 07:03:04 +01:00
trytond-asset_manager/tests/test_asset_manager.py
Raimon Esteve 573c506a14 Manage Replace Wizard
issue5820
#036415
2019-01-23 17:11:19 +01:00

25 lines
810 B
Python

# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
import unittest
import doctest
import trytond.tests.test_tryton
from trytond.tests.test_tryton import ModuleTestCase
from trytond.tests.test_tryton import doctest_teardown, doctest_checker
class AssetManagerTestCase(ModuleTestCase):
'Test module'
module = 'asset_manager'
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
AssetManagerTestCase))
suite.addTests(doctest.DocFileSuite(
'scenario_party_replace.rst',
tearDown=doctest_teardown, encoding='utf-8',
checker=doctest_checker,
optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
return suite