test(fusion_accounting_followup): 5 OWL tour tests
Made-with: Cursor
This commit is contained in:
@@ -20,3 +20,4 @@ from . import test_performance_benchmarks
|
||||
from . import test_batch_followup_wizard
|
||||
from . import test_migration_round_trip
|
||||
from . import test_coexistence
|
||||
from . import test_followup_tours
|
||||
|
||||
23
fusion_accounting_followup/tests/test_followup_tours.py
Normal file
23
fusion_accounting_followup/tests/test_followup_tours.py
Normal file
@@ -0,0 +1,23 @@
|
||||
"""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")
|
||||
Reference in New Issue
Block a user