blob: a50534ab4e29a1af776c0a62d60e644fffb3b06c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.tests.common import SavepointCase
class TestContractCommon(SavepointCase):
@classmethod
def setUpClass(cls):
super(TestContractCommon, cls).setUpClass()
cls.employee = cls.env['hr.employee'].create({
'name': 'Richard',
'gender': 'male',
'country_id': cls.env.ref('base.be').id,
})
|