mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
27 lines
903 B
Python
27 lines
903 B
Python
|
# © 2016 Tecnativa - Vicent Cubells
|
||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl-3.0).
|
||
|
from flectra.exceptions import UserError
|
||
|
from flectra.tests import common
|
||
|
|
||
|
|
||
|
class TestRecursion(common.TransactionCase):
|
||
|
@classmethod
|
||
|
def setUpClass(cls):
|
||
|
super().setUpClass()
|
||
|
cls.department_obj = cls.env["res.partner.department"]
|
||
|
|
||
|
# Instances
|
||
|
cls.dpt1 = cls.department_obj.create({"name": "Dpt. 1"})
|
||
|
cls.dpt2 = cls.department_obj.create(
|
||
|
{"name": "Dep. 2", "parent_id": cls.dpt1.id}
|
||
|
)
|
||
|
|
||
|
def test_recursion(self):
|
||
|
"""Testing recursion"""
|
||
|
self.dpt3 = self.department_obj.create(
|
||
|
{"name": "Dep. 3", "parent_id": self.dpt2.id}
|
||
|
)
|
||
|
# Creating a parent's child department using dpt1.
|
||
|
with self.assertRaises(UserError):
|
||
|
self.dpt1.write(vals={"parent_id": self.dpt3.id})
|