diff --git a/coworking_coworker/tests/test_coworking_coworker.py b/coworking_coworker/tests/test_coworking_coworker.py index 7b5c333..87a0cca 100644 --- a/coworking_coworker/tests/test_coworking_coworker.py +++ b/coworking_coworker/tests/test_coworking_coworker.py @@ -15,6 +15,9 @@ class TestCoworkingCoworker(TransactionCase): super(TestCoworkingCoworker, self).setUp(*args, **kwargs) data = {'name': 'Homer Simpson', 'is_coworker': True} self.homer = self.env['res.partner'].create(data) + fulladdr = {'26 rue de la concorde', '87452', 'Lyon'} + self.rue = self.env['res.partner'].create(fulladdr) + def test_contact_date(self): """ Test contact date : default to today and validity """ @@ -32,6 +35,7 @@ class TestCoworkingCoworker(TransactionCase): def test_full_address(self): """ Test full address rendering """ + full_contact_adress = fields.Char.frome_sting(self.) pass def test_manage_coworker_type(self):