mirror of
https://github.com/bringout/oca-ocb-project.git
synced 2026-04-18 21:42:03 +02:00
Initial commit: Project packages
This commit is contained in:
commit
89613c97b0
753 changed files with 496325 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from .test_project_base import TestProjectCommon
|
||||
|
||||
class TestTaskFollow(TestProjectCommon):
|
||||
|
||||
def test_follow_on_create(self):
|
||||
# Tests that the user is follower of the task upon creation
|
||||
self.assertTrue(self.user_projectuser.partner_id in self.task_1.message_partner_ids)
|
||||
|
||||
def test_follow_on_write(self):
|
||||
# Tests that the user is follower of the task upon writing new assignees
|
||||
self.task_2.user_ids += self.user_projectmanager
|
||||
self.assertTrue(self.user_projectmanager.partner_id in self.task_2.message_partner_ids)
|
||||
Loading…
Add table
Add a link
Reference in a new issue