mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# Copyright 2017 Tecnativa - Pedro M. Baeza
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra.tests import common
|
|
|
|
|
|
class TestConfig(common.SavepointCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(TestConfig, cls).setUpClass()
|
|
cls.wizard = cls.env['res.config.settings'].create({})
|
|
cls.partner = cls.env['res.partner'].create({
|
|
'firstname': "First",
|
|
'lastname': "Last",
|
|
'lastname2': "Second",
|
|
})
|
|
|
|
def test_last_first(self):
|
|
self.wizard.partner_names_order = 'last_first'
|
|
self.wizard.set_values()
|
|
self.wizard.action_recalculate_partners_name()
|
|
self.assertEqual(self.partner.name, "Last Second First")
|
|
|
|
def test_last_first_comma(self):
|
|
self.wizard.partner_names_order = 'last_first_comma'
|
|
self.wizard.set_values()
|
|
self.wizard.action_recalculate_partners_name()
|
|
self.assertEqual(self.partner.name, "Last Second, First")
|
|
|
|
def test_first_last(self):
|
|
self.wizard.partner_names_order = 'first_last'
|
|
self.wizard.set_values()
|
|
self.wizard.action_recalculate_partners_name()
|
|
self.assertEqual(self.partner.name, "First Last Second")
|