diff --git a/mis_builder/tests/__init__.py b/mis_builder/tests/__init__.py index 622712e3..74648a8d 100644 --- a/mis_builder/tests/__init__.py +++ b/mis_builder/tests/__init__.py @@ -2,4 +2,7 @@ # © 2014-2015 ACSONE SA/NV () # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from . import test_accounting_none +from . import test_aggregate from . import test_mis_builder +from . import test_simple_array diff --git a/mis_builder/tests/test_accounting_none.py b/mis_builder/tests/test_accounting_none.py new file mode 100644 index 00000000..6a410228 --- /dev/null +++ b/mis_builder/tests/test_accounting_none.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +# © 2014-2015 ACSONE SA/NV () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +import doctest + +from openerp.addons.mis_builder.models import accounting_none + + +def load_tests(loader, tests, ignore): + tests.addTests(doctest.DocTestSuite(accounting_none)) + return tests diff --git a/mis_builder/tests/test_aggregate.py b/mis_builder/tests/test_aggregate.py new file mode 100644 index 00000000..ca92a4d1 --- /dev/null +++ b/mis_builder/tests/test_aggregate.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +# © 2014-2015 ACSONE SA/NV () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +import doctest + +from openerp.addons.mis_builder.models import aggregate + + +def load_tests(loader, tests, ignore): + tests.addTests(doctest.DocTestSuite(aggregate)) + return tests diff --git a/mis_builder/tests/test_simple_array.py b/mis_builder/tests/test_simple_array.py new file mode 100644 index 00000000..ab59eed0 --- /dev/null +++ b/mis_builder/tests/test_simple_array.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +# © 2014-2015 ACSONE SA/NV () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +import doctest + +from openerp.addons.mis_builder.models import simple_array + + +def load_tests(loader, tests, ignore): + tests.addTests(doctest.DocTestSuite(simple_array)) + return tests