You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
593 B
19 lines
593 B
# -*- coding: utf-8 -*-
|
|
|
|
from odoo.tests import HttpCase, tagged
|
|
|
|
@tagged('post_install', '-at_install')
|
|
class TestProjectUpdateUi(HttpCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
|
|
# Enable the "Milestones" feature to be able to create milestones on this tour.
|
|
cls.env['res.config.settings'] \
|
|
.create({'group_project_milestone': True}) \
|
|
.execute()
|
|
|
|
def test_01_project_tour(self):
|
|
self.start_tour("/web", 'project_update_tour', login="admin")
|
|
self.start_tour("/web", 'project_tour', login="admin")
|