Merge PR #934 into 15.0

Signed-off-by yajo
This commit is contained in:
OCA-git-bot 2022-07-11 06:27:33 +00:00
commit d20ca364cf
4 changed files with 13 additions and 4 deletions

View File

@ -10,6 +10,9 @@
"license": "AGPL-3",
"category": "Marketing",
"depends": ["mail"],
"external_dependencies": {
"python": ["odoo_test_helper"],
},
"website": "https://github.com/OCA/social",
"data": [
"security/ir.model.access.csv",

View File

@ -1,3 +1,7 @@
* `Camptocamp <https://www.camptocamp.com>`_
* Iván Todorovich <ivan.todorovich@gmail.com>
* `Moduon <https://www.moduon.team/>`__
* Jairo Llopis

View File

@ -28,8 +28,8 @@ class TestMailAutosubscribe(TransactionCase):
{
"model_id": cls.fake_order_model.id,
"name": "Fake Order: Send by Mail",
"subject": "Fake Order: ${object.partner_id.name}",
"partner_to": "${object.partner_id.id}",
"subject": "Fake Order: {{object.partner_id.name}}",
"partner_to": "{{object.partner_id.id}}",
"body_html": "Hello, this is a fake order",
}
)
@ -111,7 +111,7 @@ class TestMailAutosubscribe(TransactionCase):
default_composition_mode="comment",
)
)
composer.save().send_mail()
composer.save().action_send_mail()
message = self.order.message_ids[0]
self.assertEqual(message.partner_ids, self.partner_2 | self.partner_3)
@ -127,6 +127,6 @@ class TestMailAutosubscribe(TransactionCase):
default_composition_mode="comment",
)
)
composer.save().send_mail()
composer.save().action_send_mail()
message = self.order.message_ids[0]
self.assertEqual(message.partner_ids, self.partner_2)

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
# generated from manifests external_dependencies
odoo_test_helper