You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# Copyright 2019 Onestein BV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo.tests.common import TransactionCase
class TestAccessRuleButtons(TransactionCase): def setUp(self): super(TestAccessRuleButtons, self).setUp()
self.curr_obj = self.env['res.currency'] self.curr_record = self.env.ref('base.USD')
def test_check_access_rule_1(self): res = self.curr_obj.check_access_rule_all(['write']) self.assertTrue(res['write'])
def test_check_access_rule_2(self): res = self.curr_record.check_access_rule_all(['write']) self.assertTrue(res['write'])
|