X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/0eb71cdce8c4340690ba5f12cc839913512b65c8..d732dc3bb287bbbc58da28a637cef3dc2cc4802e:/test/bdd/api/details/params.feature diff --git a/test/bdd/api/details/params.feature b/test/bdd/api/details/params.feature index b0a80f5b..3c9286ed 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 html details query for + | keywords | + | 1 | + Then the result is valid html + + Examples: + | osmid | + | W78099902 | + | N3121929846 | + +