15 lines
509 B
Python
15 lines
509 B
Python
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
import odoo.tests
|
||
|
from odoo.addons.gamification.tests.common import HttpCaseGamification
|
||
|
|
||
|
|
||
|
@odoo.tests.tagged('post_install', '-at_install')
|
||
|
class TestWebsiteProfile(HttpCaseGamification):
|
||
|
def test_save_change_description(self):
|
||
|
odoo.tests.new_test_user(
|
||
|
self.env, 'test_user',
|
||
|
karma=100, website_published=True
|
||
|
)
|
||
|
self.start_tour("/", 'website_profile_description', login="admin")
|