mirror of
https://github.com/enzet/map-machine.git
synced 2025-08-06 10:09:52 +02:00
Add documentation.
This commit is contained in:
parent
efda73a436
commit
2db6cc8d49
3 changed files with 11 additions and 1 deletions
|
@ -36,6 +36,7 @@
|
|||
<w>rasterized</w>
|
||||
<w>röntgen</w>
|
||||
<w>scoria</w>
|
||||
<w>skillion</w>
|
||||
<w>subattributes</w>
|
||||
<w>subelement</w>
|
||||
<w>subparser</w>
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
"""
|
||||
Test icon generation for nodes.
|
||||
|
||||
Tests check that for the given node described by tags, Map Machine generates
|
||||
expected icons with expected colors.
|
||||
"""
|
||||
from pathlib import Path
|
||||
from typing import Optional
|
||||
|
@ -166,7 +169,7 @@ def test_icon_regex() -> None:
|
|||
|
||||
def test_vending_machine() -> None:
|
||||
"""
|
||||
Check that specific vending machines doesn't render with generic icon.
|
||||
Check that specific vending machines aren't rendered with generic icon.
|
||||
|
||||
See https://github.com/enzet/map-machine/issues/132
|
||||
"""
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
"""
|
||||
Test map generation for ways.
|
||||
|
||||
Tests check that for the given ways described by tags, Map Machine generates
|
||||
expected figures in the expected order.
|
||||
"""
|
||||
import numpy as np
|
||||
|
||||
from map_machine.constructor import Constructor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue