# -*- 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 TestCoworkingEvent(TransactionCase): """ Coworking cowoker testing """ def setUp(self, *args, **kwargs): """ Bootstrap testing """ super(TestCoworkingEvent, self).setUp(*args, **kwargs) data = {'title': 'Mon evenement', 'is_coworker': True} self.homer = self.env['res.partner'].create(data) def test_contact_date(self): pass