123456789101112131415161718192021 |
- # -*- 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,
- })
|