mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
7f1e78faf5
This commit adds a test to ensure that assets and images referenced from a theme do actually belong to that theme. task-4146886 Part-of: odoo/design-themes#889 Signed-off-by: Arthur Detroux (ard) <ard@odoo.com>
13 lines
469 B
Python
13 lines
469 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
# The order of these tests is important, as the last one will uninstall this
|
|
# module. Ideally, the tests would be independent from one another but for now,
|
|
# ensure this order.
|
|
|
|
from . import test_crawl
|
|
from . import test_new_page_templates
|
|
from . import test_theme_scope
|
|
from . import test_theme_upgrade
|
|
# This test should be last.
|
|
from . import test_theme_standalone
|