forked from Mapan/odoo17e
19 lines
618 B
Python
19 lines
618 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Web Gantt Tests',
|
|
'version': '1.0',
|
|
'category': 'Hidden',
|
|
'summary': 'Web Gantt Tests: Tests specific to the gantt view',
|
|
'description': """This module contains tests related to the web gantt view. Those are
|
|
present in a separate module as it contains models used only to perform
|
|
tests independently to functional aspects of other models. """,
|
|
'depends': ['web_gantt'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'installable': True,
|
|
'license': 'OEEL-1',
|
|
}
|