mirror of
https://github.com/osm-search/Nominatim.git
synced 2025-01-02 01:42:01 +03:00
14 lines
523 B
Gherkin
14 lines
523 B
Gherkin
|
@DB
|
||
|
Feature: Import of relations by osm2pgsql
|
||
|
Testing specific relation problems related to members.
|
||
|
|
||
|
Scenario: Don't import empty waterways
|
||
|
Given the osm nodes:
|
||
|
| id | tags
|
||
|
| 1 | 'amenity' : 'prison', 'name' : 'foo'
|
||
|
And the osm relations:
|
||
|
| id | tags | members
|
||
|
| 1 | 'type' : 'waterway', 'waterway' : 'river', 'name' : 'XZ' | N1
|
||
|
When loading osm data
|
||
|
Then table place has no entry for R1
|