+ Scenario Outline: Simple reverse-geocoding with no results
+ When sending v1/reverse at <lat>,<lon>
+ Then exactly 0 results are returned
+
+ Examples:
+ | lat | lon |
+ | 0.0 | 0.0 |
+ | 91.3 | 0.4 |
+ | -700 | 0.4 |
+ | 0.2 | 324.44 |
+ | 0.2 | -180.4 |
+
+
+ Scenario: Unknown countries fall back to default country grid
+ When sending v1/reverse at 45.174,-103.072
+ Then results contain
+ | category | type | display_name |
+ | place | country | United States |
+
+