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.
18 lines
648 B
18 lines
648 B
# Copyright 2016-2018 Therp BV <https://therp.nl>.
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
from odoo.tests.common import TransactionCase
|
|
|
|
|
|
class TestPartnerContactGender(TransactionCase):
|
|
|
|
def setUp(self):
|
|
super(TestPartnerContactGender, self).setUp()
|
|
self.testpartner = self.env['res.partner'].create({
|
|
'name': 'test',
|
|
'title': self.env.ref('base.res_partner_title_madam').id,
|
|
})
|
|
|
|
def test_partner_contact_gender(self):
|
|
from ..hooks import post_init_hook
|
|
post_init_hook(self.cr, None)
|
|
self.assertEqual(self.testpartner.gender, 'female')
|