blob: 9fd5ee2c273dbd11ba340675cb7af82e8e646390 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import odoo.tests
@odoo.tests.tagged('post_install', '-at_install')
class TestUi(odoo.tests.HttpCase):
def test_01_project_tour(self):
self.start_tour("/web", 'project_tour', login="admin")
|