13 lines
469 B
Python
13 lines
469 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
|
|
from odoo.tests.common import tagged, HttpCase
|
|
|
|
|
|
@tagged('post_install', '-at_install')
|
|
class TestUi(AccountTestInvoicingCommon, HttpCase):
|
|
|
|
def test_01_sale_tour(self):
|
|
self.env['res.partner'].create({'name': 'Agrolait', 'email': 'agro@lait.be'})
|
|
self.start_tour("/odoo", 'sale_tour', login="admin")
|