(*properties)
| 176 | |
| 177 | def test_geojson_find_identifier(): |
| 178 | def _create(*properties): |
| 179 | return { |
| 180 | "type": "FeatureCollection", |
| 181 | "features": [ |
| 182 | {"type": "Feature", "properties": item} for item in properties |
| 183 | ], |
| 184 | } |
| 185 | |
| 186 | def _assert_id_got_added(data): |
| 187 | _geojson = GeoJson(data) |
no outgoing calls
no test coverage detected