1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/documents_spreadsheet_crm/tests/test_template.py
2024-12-10 09:04:09 +07:00

18 lines
535 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import odoo
from odoo.tests import tagged
from odoo.tests.common import HttpCase
@tagged('post_install', '-at_install')
class TestSpreadsheetTemplate(HttpCase):
def test_insert_pivot_in_spreadsheet(self):
self.env['crm.lead'].create({
'name': 'Test Lead',
'user_id': self.env.ref('base.user_admin').id,
})
self.start_tour('/web', 'insert_crm_pivot_in_spreadsheet', login='admin')