X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/19e9748874afa4419d89cc36e12613ad57ee867a..6c12fc971e0e6141572ad50adf79533b4fc87d1a:/test/bdd/db/import/interpolation.feature?ds=sidebyside diff --git a/test/bdd/db/import/interpolation.feature b/test/bdd/db/import/interpolation.feature index 4ed66b91..7dfc6b23 100644 --- a/test/bdd/db/import/interpolation.feature +++ b/test/bdd/db/import/interpolation.feature @@ -301,3 +301,20 @@ Feature: Import of address interpolations Then W1 expands to interpolation | start | end | geometry | | 23 | 29 | 0.0001 0.0001, 0.0001 0.0002, 0.0001 0.0004 | + + Scenario: Ways without node entries are ignored + Given the places + | osm | class | type | housenr | geometry | + | W1 | place | houses | even | 1 1, 1 1.001 | + When importing + Then W1 expands to no interpolation + + Scenario: Ways without nodes without housenumbers are ignored + Given the places + | osm | class | type | housenr | geometry | + | N1 | place | house | | 1 1 | + | N2 | place | house | | 1 1.001 | + | W1 | place | houses | even | 1 1, 1 1.001 | + When importing + Then W1 expands to no interpolation +