MCPcopy Create free account
hub / github.com/python-visualization/folium / test_heatmap_data

Function test_heatmap_data

tests/plugins/test_heat_map.py:57–63  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

55
56
57def test_heatmap_data():
58 data = HeatMap(np.array([[3, 4, 1], [5, 6, 1], [7, 8, 0.5]])).data
59 assert isinstance(data, list)
60 assert len(data) == 3
61 for i in range(len(data)):
62 assert isinstance(data[i], list)
63 assert len(data[i]) == 3
64
65
66def test_heat_map_exception():

Callers

nothing calls this directly

Calls 1

HeatMapClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…