MCPcopy Index your code
hub / github.com/python-visualization/folium / test_parse_options

Function test_parse_options

tests/test_utilities.py:193–197  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

191
192
193def test_parse_options():
194 assert parse_options(thing=42) == {"thing": 42}
195 assert parse_options(thing=None) == {}
196 assert parse_options(long_thing=42) == {"longThing": 42}
197 assert parse_options(thing=42, lst=[1, 2]) == {"thing": 42, "lst": [1, 2]}
198
199
200@pytest.mark.parametrize(

Callers

nothing calls this directly

Calls 1

parse_optionsFunction · 0.90

Tested by

no test coverage detected