Sideband_CE/sbapp/kivymd/tests/test_font_definitions.py
2022-07-07 22:16:10 +02:00

17 lines
351 B
Python

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()