2 Feature: Searching of simple objects
5 Scenario: Search for place node
7 | osm | class | type | name+name | geometry |
8 | N1 | place | village | Foo | 10.0 -10.0 |
10 And searching for "Foo"
12 | ID | osm | class | type | centroid |
13 | 0 | N1 | place | village | 10 -10 |
15 Scenario: Updating postcode in postcode boundaries without ref
17 | osm | class | type | postcode | geometry |
18 | R1 | boundary | postal_code | 12345 | poly-area:1.0 |
20 And searching for "12345"
22 | ID | osm_type | osm_id |
25 | osm | class | type | postcode | geometry |
26 | R1 | boundary | postal_code | 54321 | poly-area:1.0 |
27 And searching for "12345"
28 Then exactly 0 results are returned
29 When searching for "54321"
31 | ID | osm_type | osm_id |