Turkesh Patel (openERP) has proposed merging
lp:~openerp-dev/openobject-addons/trunk-clean-yml-project_gtd-tpa into
lp:openobject-addons.
Requested reviews:
Ujjvala Collins (OpenERP) (uco-openerp)
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-clean-yml-project_gtd-tpa/+merge/85080
Project_gtd
Improved yml of Project_gtd module
--
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-clean-yml-project_gtd-tpa/+merge/85080
Your team OpenERP R&D Team is subscribed to branch
lp:~openerp-dev/openobject-addons/trunk-clean-yml-project_gtd-tpa.
=== modified file 'project_gtd/__openerp__.py'
--- project_gtd/__openerp__.py 2011-12-08 22:25:43 +0000
+++ project_gtd/__openerp__.py 2011-12-09 08:53:44 +0000
@@ -57,7 +57,7 @@
],
'demo_xml': ['project_gtd_demo.xml'],
'test':[
- 'test/gtd_test.yml'
+ 'test/task_timebox.yml'
],
'installable': True,
'application': True,
=== renamed file 'project_gtd/test/gtd_test.yml' => 'project_gtd/test/task_timebox.yml'
--- project_gtd/test/gtd_test.yml 2011-11-14 10:47:34 +0000
+++ project_gtd/test/task_timebox.yml 2011-12-09 08:53:44 +0000
@@ -1,78 +1,46 @@
--
- Create a task 'Develop time management module' with weekly timebox
--
- !record {model: project.task, id: project_task_developtimemanagementmodule0}:
- name: Develop time management module
- planned_hours: 15.0
- project_id: project.project_project_22
- remaining_hours: 15.0
- state: draft
- timebox_id: project_gtd.timebox_weekly
-
-
--
- Open the task
--
- !python {model: project.task}: |
- self.do_open(cr, uid, [ref("project_task_developtimemanagementmodule0")], {"lang":
- "en_US", "project_id": False, "tz": False, "active_model": "ir.ui.menu",
- "department_id": False, "section_id": False, "search_default_project_id":
- False, "search_default_user_id": 1, "search_default_current": 1, "active_ids":
- [ref("project.menu_action_view_task")], "active_id": ref("project.menu_action_view_task"),
- })
-
--
- Create time box for next week
--
- !record {model: project.gtd.timebox, id: project_gtd_timebox_nextweek0}:
- name: Next Week
- sequence: 0.0
-
--
- Create time box for tomorrow
--
- !record {model: project.gtd.timebox, id: project_gtd_timebox_tomorrow1}:
- name: Tomorrow
- sequence: 0.0
-
--
- Planify the task from weekly timebox to tomorrow timebox
--
- !record {model: project.timebox.fill.plan, id: project_timebox_fill_plan_0}:
- task_ids:
- - project_task_developtimemanagementmodule0
- timebox_id: project_gtd.timebox_weekly
- timebox_to_id: project_gtd_timebox_tomorrow1
-
-
--
- Set the task to tomorrow timebox
--
+-
+ In order to test the process of Timebox in Project Management module,
+ I set my task from Daily to Weekly Timebox through Plannify Timebox
+-
+ !record {model: project.timebox.fill.plan, id: plan_id}:
+ task_ids: [project.project_task_10]
+ timebox_id: timebox_daily
+ timebox_to_id: timebox_weekly
+-
+ I set the task from Daily Timebox to Weekly Timebox
+-
!python {model: project.timebox.fill.plan}: |
- self.process(cr, uid, [ref("project_timebox_fill_plan_0")], {"lang": "en_US",
- "project_id": False, "tz": False, "active_model": "project.gtd.timebox",
- "department_id": False, "section_id": False, "record_id": 1, "active_ids":
- [ref("project_gtd.timebox_daily")], "active_id": ref("project_gtd.timebox_daily"),
- })
-
--
- Check if task set to tomorrow timebox
--
- !assert {model: project.task, id: project_task_developtimemanagementmodule0, string: Task set to tomorrow timebox}:
- - timebox_id.id == ref("project_gtd_timebox_tomorrow1")
-
--
- Empty Timebox for tomorrow
--
- !python {model: project.timebox.empty}: |
- self._empty(cr, uid, {"lang": "en_US",
- "project_id": False, "tz": False, "active_model": "project.gtd.timebox",
- "department_id": False, "section_id": False, "record_id": 1, "active_ids":
- [ref("project_gtd_timebox_tomorrow1")], "active_id": ref("project_gtd_timebox_tomorrow1"),
- })
-
--
- Check task 'Develop time management module' is no more in tomorrow timebox
--
- !assert {model: project.task, id: project_task_developtimemanagementmodule0, string: Task is not in tomorrow timebox}:
- - timebox_id.id != ref("project_gtd_timebox_tomorrow1")
+ self.process(cr, uid, [ref("plan_id")])
+-
+ I check task is set to Weekly Timebox
+-
+ !assert {model: project.task, id: project.project_task_10, string: Task should be set to weekly timebox}:
+ - timebox_id.id == ref("timebox_weekly")
+-
+ I Empty the Weekly Timebox
+-
+ !python {model: project.timebox.empty}: |
+ self._empty(cr, uid, {"active_model": "project.gtd.timebox",
+ "active_ids":[ref("timebox_weekly")],
+ "active_id": ref("timebox_weekly"),
+ })
+-
+ I check task 'Develop Module in Sale Management' is no more in Weekly Timebox
+-
+ !assert {model: project.task, id: project.project_task_10 , string: Task is not in Weekly Timebox }:
+ - timebox_id.id != ref("timebox_weekly")
+-
+ I set Previous Timebox on task
+-
+ !python {model: project.task}: |
+ self.fields_view_get(cr, uid, ref("project_task"),"form", context)
+ previous_timebox = self.prev_timebox(cr, uid, [ref("project.project_task_10")],
+ {'active_ids': [ref("project_gtd.menu_open_gtd_timebox_tree")],})
+ assert previous_timebox == True, "I set Previous Timebox on task"
+-
+ I set Next Timebox on task
+-
+ !python {model: project.task}: |
+ next_timebox = self.next_timebox(cr, uid, [ref("project.project_task_10")],
+ {'active_ids': [ref("project_gtd.menu_open_gtd_timebox_tree")],})
+ assert next_timebox == True, "I set Next Timebox on task"
\ No newline at end of file
_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help : https://help.launchpad.net/ListHelp