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