mirror of
https://github.com/enzet/map-machine.git
synced 2025-05-05 05:06:40 +02:00
18 lines
256 B
Python
18 lines
256 B
Python
"""
|
|
Author: Sergey Vartanov (me@enzet.ru).
|
|
"""
|
|
|
|
import os
|
|
import random
|
|
import yaml
|
|
|
|
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()
|