[IMP] project_issue: clean the test cases
[odoo/odoo.git] / addons / project_issue / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 {
24     'name': 'Issues Tracker',
25     'version': '1.0',
26     'category': 'Project Management',
27     'complexity': "easy",
28     'description': """
29 This module provides Issues/Bugs Management in Project.
30 =======================================================
31
32 OpenERP allows you to manage the issues you might face in a project
33 like bugs in a system, client complaints or material breakdowns. A
34 list view allows the manager to quickly check the issues, assign them
35 and decide on their status as they evolve.
36     """,
37     'author': 'OpenERP SA',
38     'website': 'http://www.openerp.com',
39     'images': ['images/issue_analysis.jpeg','images/project_issue.jpeg'],
40     'depends': [
41         'crm',
42         'project',
43     ],
44     'init_xml': [
45         'project_issue_data.xml'
46     ],
47     'update_xml': [
48         'project_issue_view.xml',
49         'project_issue_menu.xml',
50         'report/project_issue_report_view.xml',
51         'security/project_issue_security.xml',
52         'security/ir.model.access.csv',
53         "board_project_issue_view.xml",
54      ],
55     'demo_xml': ['project_issue_demo.xml'],
56     'test': [
57       #'test/convert_issue_to_task.yml',
58       #'test/test_project_issue_states.yml'
59       'test/subscribe_issue.yml',
60       'test/draft2open2close.yml',
61       'test/cancel_issue.yml',
62       'test/issue_demo.yml'
63     ],
64     'installable': True,
65     'active': False,
66     'certificate' : '001236490750848623845',
67 }
68
69 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: