(data)
| 184 | } |
| 185 | |
| 186 | def _assert_id_got_added(data): |
| 187 | _geojson = GeoJson(data) |
| 188 | assert _geojson.find_identifier() == "feature.id" |
| 189 | assert _geojson.data["features"][0]["id"] == "0" |
| 190 | |
| 191 | data_with_id = _create(None, None) |
| 192 | data_with_id["features"][0]["id"] = "this-is-an-id" |
no test coverage detected