15 lines
583 B
Python
15 lines
583 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import tests
|
|
from odoo.addons.website_livechat.tests.common import TestLivechatCommon
|
|
|
|
|
|
@tests.tagged("-at_install", "post_install")
|
|
class TestLivechatSessionUserChanges(tests.HttpCase, TestLivechatCommon):
|
|
def test_livechat_login_after_chat_start(self):
|
|
self.start_tour("/", "website_livechat_login_after_chat_start")
|
|
|
|
def test_livechat_logout_after_chat_start(self):
|
|
self.start_tour("/", "website_livechat_logout_after_chat_start", login="admin")
|