blob: 82858b520d25fa6e5358443971263c434022664a (
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_mail_tour(self):
self.start_tour("/web", 'mail_tour', login="admin")
|