mirror of
https://github.com/enzet/map-machine.git
synced 2025-07-22 19:07:46 +02:00
12 lines
255 B
Python
12 lines
255 B
Python
"""
|
|
Author: Sergey Vartanov (me@enzet.ru).
|
|
"""
|
|
from os import makedirs
|
|
|
|
from roentgen.grid import draw_all_icons
|
|
|
|
|
|
def test_icons() -> None:
|
|
""" Test grid drawing. """
|
|
makedirs("icon_set", exist_ok=True)
|
|
draw_all_icons("temp.svg", "icon_set")
|