mirror of https://github.com/pelias/docker.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
{ |
|
"name": "/v1/search venues", |
|
"priorityThresh": 1, |
|
"endpoint": "search", |
|
"tests": [ |
|
{ |
|
"id": 1, |
|
"status": "pass", |
|
"notes": "los angeles international airport should come up for LAX", |
|
"in": { |
|
"text": "lax" |
|
}, |
|
"expected": { |
|
"properties": [ |
|
{ |
|
"layer": "venue", |
|
"name": "Los Angeles International Airport", |
|
"country_a": "USA", |
|
"country": "United States", |
|
"region": "California", |
|
"region_a": "CA", |
|
"locality": "Los Angeles" |
|
} |
|
] |
|
} |
|
}, |
|
{ |
|
"id": 2, |
|
"status": "pass", |
|
"notes": "los angeles international airport should come up for LAX", |
|
"in": { |
|
"text": "lax airport" |
|
}, |
|
"expected": { |
|
"properties": [ |
|
{ |
|
"layer": "venue", |
|
"name": "Los Angeles International Airport", |
|
"country_a": "USA", |
|
"country": "United States", |
|
"region": "California", |
|
"region_a": "CA", |
|
"locality": "Los Angeles" |
|
} |
|
] |
|
} |
|
} |
|
] |
|
}
|
|
|