mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2025-02-23 01:10:52 +00:00
12 lines
384 B
Python
12 lines
384 B
Python
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra.tests import Form, common
|
|
|
|
|
|
class TestPartnerDisableGravatar(common.TransactionCase):
|
|
def test_disable_gravatar(self):
|
|
with Form(self.env["res.partner"]) as f1:
|
|
f1.name = "Support Gravatar"
|
|
f1.email = "support@gravatar.com"
|
|
self.assertFalse(f1.image_1920)
|