X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/09f95609cd4f44bbacd275569b043cc665584fa5..0bbc25c9c5c3ab644d6771ccbd87f26c3d7552bf:/test/bdd/db/update/simple.feature diff --git a/test/bdd/db/update/simple.feature b/test/bdd/db/update/simple.feature index ecbb1244..d48e97fa 100644 --- a/test/bdd/db/update/simple.feature +++ b/test/bdd/db/update/simple.feature @@ -85,3 +85,22 @@ Feature: Update of simple objects | osm | class | type | name | admin | geometry | | W1 | boundary | administrative | Haha | 5 | 1, 2, 4, 3 | Then placex has no entry for W1 + + #895 + Scenario: update rank when boundary is downgraded from admin to historic + Given the grid + | 1 | 2 | + | 3 | 4 | + And the places + | osm | class | type | name | admin | geometry | + | W1 | boundary | administrative | Haha | 5 | (1, 2, 4, 3, 1) | + When importing + Then placex contains + | object | rank_address | + | W1 | 10 | + When updating places + | osm | class | type | name | admin | geometry | + | W1 | boundary | historic | Haha | 5 | (1, 2, 4, 3, 1) | + Then placex contains + | object | rank_address | + | W1 | 0 |