Coworking/coworking_event/tests/test_coworking_event.py

21 lines
603 B
Python
Raw Normal View History

2017-12-04 14:52:48 +01:00
# -*- 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 """
2017-12-05 12:46:36 +01:00
# 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)
2017-12-04 14:52:48 +01:00
def test_contact_date(self):
pass