Sideband_CE/sbapp/kivymd/tests/test_font_definitions.py

17 lines
351 B
Python
Raw Normal View History

2022-07-07 22:16:10 +02:00
def test_fonts_registration():
# This should register fonts:
from kivy.core.text import LabelBase
import kivymd # NOQA
fonts = [
"Roboto",
"RobotoThin",
"RobotoLight",
"RobotoMedium",
"RobotoBlack",
"Icons",
]
for font in fonts:
assert font in LabelBase._fonts.keys()