Merge branch 'V4' of fabien/michel_coworking into V4

This commit is contained in:
michel 2017-11-30 08:27:25 +00:00 committed by Gitea
commit d266986445
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
from . import test_coworking_coworker

View File

@ -0,0 +1,39 @@
# -*- coding: utf-8 -*-
""" Coworking cowoker testing module """
from datetime import date
from odoo import fields
from odoo.exceptions import ValidationError
from odoo.tests.common import TransactionCase
class TestCoworkingCoworker(TransactionCase):
""" Coworking cowoker testing """
def setUp(self, *args, **kwargs):
""" Bootstrap testing """
super(TestCoworkingCoworker, self).setUp(*args, **kwargs)
data = {'name': 'Homer Simpson', 'is_coworker': True}
self.homer = self.env['res.partner'].create(data)
def test_contact_date(self):
""" Test contact date : default to today and validity """
contact_date = fields.Date.from_string(self.homer.contact_date)
self.assertEqual(contact_date, date.today())
marge = self.env['res.partner'].create({'name': 'Marge Simpson',
'contact_date': '2017-01-01'})
self.assertEqual(marge.contact_date, '2017-01-01')
with self.assertRaises(ValidationError) as err:
data = {'name': 'Bart Simpson', 'contact_date': '2999-01-01'}
self.env['res.partner'].create(data)
self.assertIn('equal of inferior to', unicode(err.exception))
def test_full_address(self):
""" Test full address rendering """
pass
def test_manage_coworker_type(self):
""" Test that non-coworker have not coworker_type fixed """
pass