Improve icon tests even more.

This commit is contained in:
Sergey Vartanov 2021-09-26 20:33:09 +03:00
parent b1184770a0
commit 2f66e48397

View file

@ -116,8 +116,7 @@ def test_no_icon_1_extra() -> None:
Tags that should be visualized with default main icon and single extra icon. Tags that should be visualized with default main icon and single extra icon.
""" """
icon = get_icon({"access": "private"}) icon = get_icon({"access": "private"})
assert icon.main_icon.is_default() check_icon_set(icon, [], [[("lock_with_keyhole", "#888888")]])
assert len(icon.extra_icons) == 1
def test_no_icon_2_extra() -> None: def test_no_icon_2_extra() -> None:
@ -125,5 +124,11 @@ def test_no_icon_2_extra() -> None:
Tags that should be visualized with default main icon and two extra icons. Tags that should be visualized with default main icon and two extra icons.
""" """
icon = get_icon({"access": "private", "bicycle": "yes"}) icon = get_icon({"access": "private", "bicycle": "yes"})
assert icon.main_icon.is_default() check_icon_set(
assert len(icon.extra_icons) == 2 icon,
[],
[
[("bicycle", "#888888")],
[("lock_with_keyhole", "#888888")],
],
)