hr_skills/tests/test_ui.py

25 lines
796 B
Python
Raw Normal View History

# Part of Odoo. See LICENSE file for full copyright and licensing details.
import odoo.tests
@odoo.tests.tagged('-at_install', 'post_install')
class SkillsTestUI(odoo.tests.HttpCase):
def test_ui(self):
levels = self.env['hr.skill.level'].create([{
'name': f'Level {x}',
'level_progress': x * 10,
} for x in range(10)])
skill_type = self.env['hr.skill.type'].create({
'name': 'Best Music',
'skill_level_ids': levels.ids,
})
self.env['hr.skill'].create([{
'name': 'Fortunate Son',
'skill_type_id': skill_type.id,
}, {
'name': 'Oh Mary',
'skill_type_id': skill_type.id,
}])
self.start_tour("/web", 'hr_skills_tour', login='admin')