__manifest__.py 361 B

123456789101112
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': 'test-inherit-depends',
  4. 'version': '1.0',
  5. 'category': 'Hidden/Tests',
  6. 'description': """A module to verify the inheritance using _inherit across modules.""",
  7. 'depends': ['test_inherit', 'test_new_api'],
  8. 'installable': True,
  9. 'license': 'LGPL-3',
  10. }