10 lines
247 B
Python
10 lines
247 B
Python
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo.tests.common import TransactionCase
|
||
|
|
||
|
|
||
|
class TestHrScenario(TransactionCase):
|
||
|
|
||
|
def test_load_scenario(self):
|
||
|
self.env['hr.employee']._load_scenario()
|