mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-22 21:40:36 +01:00
17 lines
351 B
Python
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()
|