mis-builder/mis_builder/tests/test_accounting_none.py

12 lines
291 B
Python
Raw Normal View History

2021-03-23 19:36:01 +00:00
# Copyright 2014 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
import doctest
from ..models import accounting_none
def load_tests(loader, tests, ignore):
tests.addTests(doctest.DocTestSuite(accounting_none))
return tests