mirror of
https://github.com/enzet/map-machine.git
synced 2025-04-29 18:27:19 +02:00
14 lines
219 B
Python
14 lines
219 B
Python
"""
|
|
Author: Sergey Vartanov (me@enzet.ru).
|
|
"""
|
|
|
|
from roentgen.flinger import map_
|
|
from roentgen.grid import draw_grid
|
|
|
|
|
|
def test_flinger_map():
|
|
assert map_(5, 0, 10, 0, 20) == 10
|
|
|
|
|
|
def test_icons():
|
|
draw_grid()
|