12 lines
504 B
Python
12 lines
504 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo.addons.hr_work_entry_contract.tests.common import TestWorkEntryBase
|
|
from odoo.addons.hr_holidays_contract.tests.common import TestHolidayContract
|
|
|
|
class TestWorkEntryHolidaysBase(TestWorkEntryBase, TestHolidayContract):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(TestWorkEntryHolidaysBase, cls).setUpClass()
|
|
cls.leave_type.work_entry_type_id = cls.work_entry_type_leave.id
|