24 lines
766 B
Python
24 lines
766 B
Python
"""Python wrappers for OWL tours via HttpCase.start_tour."""
|
|
|
|
from odoo.tests.common import HttpCase
|
|
from odoo.tests import tagged
|
|
|
|
|
|
@tagged('post_install', '-at_install', 'tour')
|
|
class TestFollowupTours(HttpCase):
|
|
|
|
def test_smoke_tour(self):
|
|
self.start_tour("/odoo", "fusion_followup_smoke", login="admin")
|
|
|
|
def test_partners_tour(self):
|
|
self.start_tour("/odoo", "fusion_followup_partners", login="admin")
|
|
|
|
def test_levels_tour(self):
|
|
self.start_tour("/odoo", "fusion_followup_levels", login="admin")
|
|
|
|
def test_history_tour(self):
|
|
self.start_tour("/odoo", "fusion_followup_history", login="admin")
|
|
|
|
def test_batch_wizard_tour(self):
|
|
self.start_tour("/odoo", "fusion_followup_batch_wizard", login="admin")
|