bdd: remove duplicated tests

This commit is contained in:
Sarah Hoffmann
2021-01-16 16:57:28 +01:00
parent c6c907d451
commit 171ed36e36

View File

@@ -30,15 +30,10 @@ Feature: Simple Tests
Examples: Examples:
| parameter | value | | parameter | value |
| addressdetails | 1 |
| addressdetails | 0 | | addressdetails | 0 |
| polygon_text | 1 |
| polygon_text | 0 | | polygon_text | 0 |
| polygon_kml | 1 |
| polygon_kml | 0 | | polygon_kml | 0 |
| polygon_geojson | 1 |
| polygon_geojson | 0 | | polygon_geojson | 0 |
| polygon_svg | 1 |
| polygon_svg | 0 | | polygon_svg | 0 |
| accept-language | de,en | | accept-language | de,en |
| countrycodes | li | | countrycodes | li |
@@ -48,9 +43,7 @@ Feature: Simple Tests
| limit | 1000 | | limit | 1000 |
| dedupe | 1 | | dedupe | 1 |
| dedupe | 0 | | dedupe | 0 |
| extratags | 1 |
| extratags | 0 | | extratags | 0 |
| namedetails | 1 |
| namedetails | 0 | | namedetails | 0 |
Scenario: Search with invalid output format Scenario: Search with invalid output format
@@ -180,13 +173,16 @@ Feature: Simple Tests
| 234 | | 234 |
Then the result is valid xml Then the result is valid xml
Scenario: Empty JSON search Scenario Outline: Empty search
When sending json search query "YHlERzzx" When sending <format> search query "YHlERzzx"
Then exactly 0 results are returned Then exactly 0 results are returned
Scenario: Empty JSONv2 search Examples:
When sending jsonv2 search query "Flubb XdfESSaZx" | format |
Then exactly 0 results are returned | json |
| jsonv2 |
| geojson |
| geocodejson |
Scenario: Search for non-existing coordinates Scenario: Search for non-existing coordinates
When sending json search query "-21.0,-33.0" When sending json search query "-21.0,-33.0"