]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/bdd/api/details/params.feature
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / test / bdd / api / details / params.feature
index b0a80f5b1df058cecd84db4751b8e3c424dce291..3c9286ed285acedc3c2c847a04db89a0662889bf 100644 (file)
@@ -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 <osmid>
+            | keywords |
+            | 1 |
+        Then the result is valid html
+
+    Examples:
+            | osmid |
+            | W78099902 |
+            | N3121929846 |
+
+