17 lines
847 B
Python
17 lines
847 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
import odoo
|
|
import odoo.tests
|
|
|
|
@odoo.tests.tagged('-at_install', 'post_install')
|
|
class TestWebsiteSettings(odoo.tests.HttpCase):
|
|
def test_01_multi_website_settings(self):
|
|
# If not enabled (like in demo data), landing on res.config will try
|
|
# to disable module_sale_quotation_builder and raise an issue
|
|
group_order_template = self.env.ref('sale_management.group_sale_order_template', raise_if_not_found=False)
|
|
if group_order_template:
|
|
self.env.ref('base.group_user').write({"implied_ids": [(4, group_order_template.id)]})
|
|
self.env['website'].create({'name': "Website Test Settings", 'specific_user_account': True})
|
|
self.start_tour("/web", 'website_settings_m2o_dirty', login="admin")
|