mirror of https://github.com/OCA/social.git
[MIG][15.0]mail_layout_preview:Migration to 15.0
parent
6ac9cb422b
commit
645099888e
|
@ -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",
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue