mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
13 lines
400 B
Python
13 lines
400 B
Python
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
# Copyright 2020 Tecnativa - João Marques
|
|
import odoo.tests
|
|
|
|
|
|
@odoo.tests.tagged("post_install", "-at_install")
|
|
class TestTour(odoo.tests.HttpCase):
|
|
def test_admin(self):
|
|
self.start_tour("/web", "export_tour_admin", login="admin")
|
|
|
|
def test_demo(self):
|
|
self.start_tour("/web", "export_tour_demo", login="demo")
|