You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
741 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Test API',
'version': '1.0',
'category': 'Hidden/Tests',
'description': """A module to test the API.""",
'depends': ['base', 'web', 'web_tour'],
'installable': True,
'data': [
'security/ir.model.access.csv',
'security/test_new_api_security.xml',
'views/test_new_api_views.xml',
'data/test_new_api_data.xml',
],
'assets': {
'web.assets_tests': [
# inside .
'test_new_api/static/tests/tours/constraint.js',
# inside .
'test_new_api/static/tests/tours/x2many.js',
],
},
'license': 'LGPL-3',
}