()
| 167 | |
| 168 | # GeoJsonMarker type validation. |
| 169 | def test_geojson_marker(): |
| 170 | m = folium.Map([30.4, -97.5], zoom_start=10) |
| 171 | with pytest.raises(TypeError): |
| 172 | folium.GeoJson( |
| 173 | os.path.join(rootpath, "subwaystations.geojson"), marker=ClickForMarker() |
| 174 | ).add_to(m) |
| 175 | |
| 176 | |
| 177 | def test_geojson_find_identifier(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…