X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/3d0f8bdc39d08c00b57ac18fc6483a6774129bb4..330b8d2fdfdd935da123abf9ecf96b3bc7a12be5:/test/bdd/db/import/rank_computation.feature diff --git a/test/bdd/db/import/rank_computation.feature b/test/bdd/db/import/rank_computation.feature index 1d4e2b82..df01fd91 100644 --- a/test/bdd/db/import/rank_computation.feature +++ b/test/bdd/db/import/rank_computation.feature @@ -255,3 +255,15 @@ Feature: Rank assignment | W1 | R10 | True | 18 | | W1 | R2 | True | 16 | | W1 | N9 | False | 18 | + + + Scenario: POI nodes with place tags + Given the places + | osm | class | type | name | extratags | + | N23 | amenity | playground | AB | "place": "city" | + | N23 | place | city | AB | "amenity": "playground" | + When importing + Then placex contains exactly + | object | rank_search | rank_address | + | N23:amenity | 30 | 30 | + | N23:place | 16 | 16 |