mirror of
https://github.com/OCA/knowledge.git
synced 2025-12-22 13:22:19 -06:00
test writed in python
This commit is contained in:
20
document_page/tests/test_document_page_create_menu.py
Normal file
20
document_page/tests/test_document_page_create_menu.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# -*- coding:utf-8 -*-
|
||||
|
||||
from openerp.tests import common
|
||||
|
||||
|
||||
class TestDocumentPageCreateMenu(common.TransactionCase):
|
||||
"""document_page_create_menu test class."""
|
||||
|
||||
def test_page_menu_creation(self):
|
||||
"""Test page menu creation."""
|
||||
|
||||
menu_parent = self.env.ref('base.menu_base_partner')
|
||||
|
||||
menu_created = self.env['document.page.create.menu'].create({
|
||||
'menu_name': 'Wiki Test menu',
|
||||
'menu_parent_id': menu_parent.id
|
||||
})
|
||||
|
||||
menu = self.env['document.page.create.menu'].search([('id', '=', menu_created.id)])
|
||||
menu.with_context(active_id=[self.ref('document_page.demo_page1')]).document_page_menu_create()
|
||||
Reference in New Issue
Block a user