Coverage for tests/unit_tests/common/test_apio_themes.py: 100%
5 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-11-06 10:20 +0000
« prev ^ index » next coverage.py v7.11.0, created at 2025-11-06 10:20 +0000
1"""Test for the apio_themes.py."""
3from apio.common.apio_themes import THEMES_TABLE, DEFAULT_THEME
6def test_theme_style():
7 """Tests that all theme have the same set of style keys."""
9 for theme_name, theme_obj in THEMES_TABLE.items():
10 print(f"Testing theme {theme_name}")
11 assert set(theme_obj.styles.keys()) == set(DEFAULT_THEME.styles.keys())