mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-21 16:12:05 +02:00
34 lines
1,020 B
Python
34 lines
1,020 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo.addons.mail.tests.common import mail_new_test_user
|
|
from odoo.tests import common
|
|
|
|
|
|
class TestHrCommon(common.TransactionCase):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
|
|
cls.res_users_hr_officer = mail_new_test_user(
|
|
cls.env,
|
|
email='hro@example.com',
|
|
login='hro',
|
|
groups='base.group_user,hr.group_hr_user,base.group_partner_manager',
|
|
name='HR Officer',
|
|
)
|
|
|
|
cls.res_users_hr_manager = mail_new_test_user(
|
|
cls.env,
|
|
email='manager@example.com',
|
|
login='manager',
|
|
groups='base.group_user,hr.group_hr_manager,base.group_partner_manager',
|
|
name='HR Admin',
|
|
)
|
|
|
|
cls.employee = cls.env['hr.employee'].create({
|
|
'name': 'Richard',
|
|
'sex': 'male',
|
|
'country_id': cls.env.ref('base.be').id,
|
|
})
|