Skip to content

Commit ce9eea7

Browse files
[MIG] Migrate the module web_m2x_options to v14.
1 parent ef297b6 commit ce9eea7

File tree

6 files changed

+41
-4
lines changed

6 files changed

+41
-4
lines changed

web_m2x_options/README.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ web_m2x_options
1414
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
1515
:alt: License: AGPL-3
1616
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
17-
:target: https://github.com/OCA/web/tree/13.0/web_m2x_options
17+
:target: https://github.com/OCA/web/tree/14.0/web_m2x_options
1818
:alt: OCA/web
1919
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
20-
:target: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_m2x_options
20+
:target: https://translation.odoo-community.org/projects/web-14-0/web-14-0-web_m2x_options
2121
:alt: Translate me on Weblate
2222
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
2323
:target: https://runbot.odoo-community.org/runbot/162/13.0
@@ -178,6 +178,7 @@ Contributors
178178
* David Vidal <[email protected]>
179179
* Ernesto Tejeda <[email protected]>
180180
* Bhavesh Odedra <[email protected]>
181+
* Dhara Solanki <[email protected]>
181182

182183
Maintainers
183184
~~~~~~~~~~~

web_m2x_options/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
from . import models
2+
from . import tests

web_m2x_options/__manifest__.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Copyright 2015 0k.io
22
# Copyright 2016 ACSONE SA/NV
33
# Copyright 2017 Tecnativa
4+
# Copyright 2020 initOS GmbH.
45
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
56

67
{
78
"name": "web_m2x_options",
8-
"version": "13.0.1.0.2",
9+
"version": "14.0.1.0.0",
910
"category": "Web",
10-
"author": "ACSONE SA/NV, "
11+
"author": "initOS GmbH,"
12+
"ACSONE SA/NV, "
1113
"0k.io, "
1214
"Tecnativa, "
1315
"Odoo Community Association (OCA)",

web_m2x_options/readme/CONTRIBUTORS.rst

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
* David Vidal <[email protected]>
1111
* Ernesto Tejeda <[email protected]>
1212
* Bhavesh Odedra <[email protected]>
13+
* Dhara Solanki <[email protected]> (http://www.initos.com)

web_m2x_options/tests/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Copyright 2020 initOS GmbH.
2+
from . import test_ir_config_parameter
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Copyright 2020 initOS GmbH.
2+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
3+
4+
from odoo.tests import common
5+
6+
7+
class TestIrConfigParameter(common.SavepointCase):
8+
@classmethod
9+
def setUpClass(cls):
10+
super(TestIrConfigParameter, cls).setUpClass()
11+
cls.env["ir.config_parameter"].set_param("web_m2x_options.limit", 10)
12+
cls.env["ir.config_parameter"].set_param("web_m2x_options.create_edit", "True")
13+
cls.env["ir.config_parameter"].set_param("web_m2x_options.create", "True")
14+
cls.env["ir.config_parameter"].set_param("web_m2x_options.search_more", "False")
15+
cls.env["ir.config_parameter"].set_param("web_m2x_options.m2o_dialog", "True")
16+
17+
def test_web_m2x_options_key(self):
18+
web_m2x_options = self.env["ir.config_parameter"].get_web_m2x_options()
19+
options = {opt["key"]: opt["value"] for opt in web_m2x_options}
20+
self.assertIn("web_m2x_options.limit", options)
21+
self.assertNotIn("web_m2x_options.m2o_dialog_test", options)
22+
23+
def test_web_m2x_options_value(self):
24+
web_m2x_options = self.env["ir.config_parameter"].get_web_m2x_options()
25+
options = {opt["key"]: opt["value"] for opt in web_m2x_options}
26+
self.assertEqual(options["web_m2x_options.limit"], "10")
27+
self.assertTrue(bool(options["web_m2x_options.create_edit"]))
28+
self.assertTrue(bool(options["web_m2x_options.create"]))
29+
self.assertEqual(options["web_m2x_options.search_more"], "False")
30+
self.assertTrue(bool(options["web_m2x_options.m2o_dialog"]))

0 commit comments

Comments
 (0)