[MERGE]: Merged with addons
[odoo/odoo.git] / addons / account_test / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #    
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (c) 2011 CCI Connect asbl (http://www.cciconnect.be) All Rights Reserved.
6 #                       Philmer <philmer@cciconnect.be>
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
10 #    published by the Free Software Foundation, either version 3 of the
11 #    License, or (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     'name' : 'Accounting Consistency Tests',
24     'version' : '1.0',
25     'author' : 'OpenERP',
26     'category' : 'Accounting & Finance',
27     'website': 'http://www.openerp.com',
28     'description': """
29 Asserts on accounting.
30 ======================
31 With this module you can manually check consistencies and inconsistencies of accounting module from menu Reporting/Accounting/Accounting Tests.
32
33 You can write a query in order to create Consistency Test and you will get the result of the test 
34 in PDF format which can be accessed by Menu Reporting -> Accounting Tests, then select the test 
35 and print the report from Print button in header area.
36 """,
37     'depends' : ['account'],
38     'data' : [
39         'security/ir.model.access.csv',
40         'account_test_view.xml',
41         'account_test_report.xml',
42         'account_test_data.xml',
43     ],
44     'active': False,
45     'installable': True
46 }
47 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: