15 lines
455 B
Python
15 lines
455 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo.tests import TransactionCase, tagged, Form
|
||
|
|
||
|
@tagged('-at_install', 'post_install')
|
||
|
class TestFormCreate(TransactionCase):
|
||
|
|
||
|
def test_create_res_lang(self):
|
||
|
lang_form = Form(self.env['res.lang'])
|
||
|
lang_form.url_code = 'LANG'
|
||
|
lang_form.name = 'a lang name'
|
||
|
lang_form.code = 'a lang code'
|
||
|
lang_form.save()
|