X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/0eb71cdce8c4340690ba5f12cc839913512b65c8..764dcd7f6459c08aafd5cf2fcb7902cc2868cb30:/test/bdd/api/details/params.feature?ds=sidebyside diff --git a/test/bdd/api/details/params.feature b/test/bdd/api/details/params.feature index b0a80f5b..fe3c4d0e 100644 --- a/test/bdd/api/details/params.feature +++ b/test/bdd/api/details/params.feature @@ -29,15 +29,28 @@ Feature: Object details Then the result is valid json And result has attributes linked_places - Scenario: JSON Details with childplaces + Scenario: JSON Details with hierarchy When sending json details query for W78099902 - | childplaces | + | hierarchy | | 1 | Then the result is valid json - And result has attributes parentof + And result has attributes hierarchy Scenario: JSON Details with linkedplaces When sending json details query for R123924 | linkedplaces | | 1 | Then the result is valid json + + Scenario Outline: HTML Details with keywords + When sending json details query for + | keywords | + | 1 | + Then the result is valid json + + Examples: + | osmid | + | W78099902 | + | N3121929846 | + +