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

15 lines
521 B
Python

from odoo.tests import tagged
from odoo.tests.common import HttpCase
TEST_CONTENT = '{"sheets": [{"cells":{"A1":{"content":"😃"}}}]}'
@tagged('post_install', '-at_install')
class TestSpreadsheetTemplateFeatures(HttpCase):
def test_spreadsheet_templates_features(self):
self.env["spreadsheet.template"].create({
"spreadsheet_data": TEST_CONTENT,
"name": "Template with special characters",
})
self.start_tour('/web', 'spreadsheet_template_features', login='admin')