[MIG][15.0]mail_layout_preview:Migration to 15.0

pull/1144/head
Ruchir Shukla 2023-03-04 16:10:36 +05:30 committed by sonhd91
parent 6ac9cb422b
commit 645099888e
2 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@
"name": "Mail Preview",
"summary": """
Preview email templates in the browser""",
"version": "14.0.1.0.1",
"version": "15.0.0.1.0",
"license": "AGPL-3",
"author": "Camptocamp SA,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/social",

View File

@ -5,7 +5,7 @@
from lxml import etree
from odoo import tools
from odoo.tests.common import HttpCase, SavepointCase, tagged
from odoo.tests.common import HttpCase, TransactionCase, tagged
class TestLayoutMixin(object):
@ -14,7 +14,7 @@ class TestLayoutMixin(object):
vals = {
"name": "Test Preview Template",
"subject": "Preview ${object.name}",
"body_html": "<p>Hello ${object.name}</p>",
"body_html": '<p>Hello <t t-out="object.name"/></p>',
"model_id": env["ir.model"]._get(model).id,
}
vals.update(kw)
@ -22,7 +22,7 @@ class TestLayoutMixin(object):
@tagged("-at_install", "post_install")
class TestLayoutPreview(SavepointCase, TestLayoutMixin):
class TestLayoutPreview(TransactionCase, TestLayoutMixin):
@classmethod
def setUpClass(cls):
super().setUpClass()
@ -75,4 +75,4 @@ class TestController(HttpCase, TestLayoutMixin):
self.base_url + "{}/{}/{}/".format(model, tmpl.id, partner.id)
)
content = response.content.decode()
self.assertIn("<p>Hello {}</p>".format(partner.name), content)
self.assertIn("<p>Hello %s</p>" % (partner.name), content)