mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02: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()
|