You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
897 B
21 lines
897 B
# -*- coding: utf-8 -*-
|
|
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from openerp.tests.common import TransactionCase
|
|
from .. import exceptions
|
|
|
|
|
|
class UnsubscriptionCase(TransactionCase):
|
|
def test_details_required(self):
|
|
"""Cannot create unsubscription without details when required."""
|
|
with self.assertRaises(exceptions.DetailsRequiredError):
|
|
self.env["mail.unsubscription"].create({
|
|
"email": "axelor@yourcompany.example.com",
|
|
"mass_mailing_id": self.env.ref("mass_mailing.mass_mail_1").id,
|
|
"unsubscriber_id":
|
|
"res.partner,%d" % self.env.ref("base.res_partner_13").id,
|
|
"reason_id":
|
|
self.env.ref(
|
|
"mass_mailing_custom_unsubscribe.reason_other").id,
|
|
})
|