forked from Mapan/odoo17e
15 lines
505 B
Python
15 lines
505 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details
|
|
|
|
from odoo.tests import tagged
|
|
|
|
from .test_sale_planning import TestCommonSalePlanning
|
|
from odoo.addons.planning.tests.test_ui_common import TestUiCommon
|
|
|
|
@tagged('post_install', '-at_install')
|
|
class TestSalePlanningUi(TestCommonSalePlanning, TestUiCommon):
|
|
|
|
def test_01_ui_inherit(self):
|
|
self.plannable_so.action_confirm()
|
|
self.start_tour("/", 'sale_planning_test_tour', login='admin')
|