[IMP] Module 'auditlog' - Add a test regarding a resource deleted through a (2, ID) tuple on a write operation
parent
cc076280f5
commit
f574e6cd33
|
@ -60,3 +60,18 @@ class TestAuditlog(TransactionCase):
|
||||||
self.env['res.groups'].create({
|
self.env['res.groups'].create({
|
||||||
'name': 'testgroup2',
|
'name': 'testgroup2',
|
||||||
})
|
})
|
||||||
|
|
||||||
|
def test_LogCreation3(self):
|
||||||
|
"""Third test, two groups, the latter being the parent of the former.
|
||||||
|
Then we remove it right after (with (2, X) tuple) to test the creation
|
||||||
|
of a 'write' log with a deleted resource (so with no text
|
||||||
|
representation).
|
||||||
|
"""
|
||||||
|
testgroup3 = self.env['res.groups'].create({
|
||||||
|
'name': 'testgroup3',
|
||||||
|
})
|
||||||
|
testgroup4 = self.env['res.groups'].create({
|
||||||
|
'name': 'testgroup4',
|
||||||
|
'implied_ids': [(4, testgroup3.id)],
|
||||||
|
})
|
||||||
|
testgroup4.write({'implied_ids': [(2, testgroup3.id)]})
|
||||||
|
|
Loading…
Reference in New Issue