~gdgellatly/banking-addons/banking-addons-minor-import-fixes

« back to all changes in this revision

Viewing changes to account_banking_tests/__openerp__.py

  • Committer: Holger Brunn
  • Author(s): stefan at therp
  • Date: 2013-10-28 14:53:55 UTC
  • mfrom: (187.3.3 ba70-add_tests)
  • Revision ID: hbrunn@therp.nl-20131028145355-0ydvfv1xqqs9tl39
[ADD] Tests module

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (C) 2013 Therp BV (<http://therp.nl>)
 
5
#
 
6
#    This program is free software: you can redistribute it and/or modify
 
7
#    it under the terms of the GNU Affero General Public License as
 
8
#    published by the Free Software Foundation, either version 3 of the
 
9
#    License, or (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU Affero General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU Affero General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##############################################################################
 
20
 
 
21
{
 
22
    'name': 'Banking Addons - Tests',
 
23
    'version': '0.1',
 
24
    'license': 'AGPL-3',
 
25
    'author': 'Therp BV',
 
26
    'website': 'https://launchpad.net/banking-addons',
 
27
    'category': 'Banking addons',
 
28
    'depends': [
 
29
        'account_accountant',
 
30
        'account_banking',
 
31
        'account_banking_sepa_credit_transfer',
 
32
        ],
 
33
    'description': '''
 
34
This addon adds unit tests for the Banking addons. Installing this
 
35
module will not give you any benefit other than having the tests'
 
36
dependencies installed, so that you can run the tests. If you only
 
37
run the tests manually, you don't even have to install this module,
 
38
only its dependencies.
 
39
    ''',
 
40
    'auto_install': False,
 
41
    'installable': True,
 
42
}