From e0bf553aa5db27d8cbdf24239b9900249329201b Mon Sep 17 00:00:00 2001 From: Ashar Date: Thu, 27 Mar 2025 19:03:33 -0400 Subject: [PATCH] test: linked places expand default language names Add failing test for issue #2714 to verify default language expansion --- test/bdd/db/import/linking.feature | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/test/bdd/db/import/linking.feature b/test/bdd/db/import/linking.feature index 5bfdbca7..61670a08 100644 --- a/test/bdd/db/import/linking.feature +++ b/test/bdd/db/import/linking.feature @@ -310,3 +310,21 @@ Feature: Linking of places | object | name+_place_name | | R1 | LabelPlace | + + Scenario: Linked places expand default language names + Given the grid + | 1 | | 2 | + | | 9 | | + | 4 | | 3 | + Given the places + | osm | class | type | name+name | name+name:en | name+name:ru | geometry | + | N9 | place | city | Popayán | Popayán | Попаян | 9 | + | R1 | boundary | administrative | Perímetro Urbano Popayán | | | (1,2,3,4,1) | + And the relations + | id | members | + | 1 | N9:label | + When importing + Then placex contains + | object | name+_place_name | name+_place_name:es | + | R1 | Popayán | Popayán | + -- 2.39.5