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.
105 lines
2.9 KiB
105 lines
2.9 KiB
{ |
|
"name": "washington dc", |
|
"priorityThresh": 1, |
|
"tests": [ |
|
{ |
|
"id": 1, |
|
"status": "pass", |
|
"user": "julian", |
|
"description": "address searches in washington DC should work when 'district of columbia' is abbreviated", |
|
"issue": "https://github.com/pelias/pelias/issues/509", |
|
"in": { |
|
"text": "1705 P St NW, Washington, dc" |
|
}, |
|
"expected": { |
|
"priorityThresh": 2, |
|
"properties": [ |
|
{ |
|
"layer": "address", |
|
"housenumber": "1705", |
|
"street": "P Street NW", |
|
"locality": "Washington", |
|
"region": "District of Columbia" |
|
}, |
|
{ |
|
"layer": "address", |
|
"housenumber": "1705", |
|
"street": "P Street Northwest", |
|
"locality": "Washington", |
|
"region": "District of Columbia" |
|
} |
|
] |
|
} |
|
}, |
|
{ |
|
"id": 2, |
|
"status": "pass", |
|
"user": "julian", |
|
"description": "address searches in washington DC should work when 'district of columbia' is not abbreviated", |
|
"issue": "https://github.com/pelias/pelias/issues/509", |
|
"in": { |
|
"text": "1705 P St NW, Washington, district of columbia" |
|
}, |
|
"expected": { |
|
"priorityThresh": 2, |
|
"properties": [ |
|
{ |
|
"layer": "address", |
|
"housenumber": "1705", |
|
"street": "P Street NW", |
|
"locality": "Washington", |
|
"region": "District of Columbia" |
|
}, |
|
{ |
|
"layer": "address", |
|
"housenumber": "1705", |
|
"street": "P Street Northwest", |
|
"locality": "Washington", |
|
"region": "District of Columbia" |
|
} |
|
] |
|
} |
|
}, |
|
{ |
|
"id": 3, |
|
"status": "pass", |
|
"user": "julian", |
|
"description": "venue searches in washington DC should work when 'district of columbia' is abbreviated", |
|
"issue": "https://github.com/pelias/pelias/issues/509", |
|
"in": { |
|
"text": "busboys and poets, washington dc" |
|
}, |
|
"expected": { |
|
"properties": [ |
|
{ |
|
"layer": "venue", |
|
"name": "Busboys and Poets", |
|
"locality": "Washington", |
|
"region": "District of Columbia" |
|
} |
|
] |
|
} |
|
}, |
|
{ |
|
"id": 4, |
|
"status": "pass", |
|
"user": "julian", |
|
"description": "S Street in Washington, DC should not be interpreted as 'South St'", |
|
"issue": "https://github.com/pelias/pelias/issues/329", |
|
"in": { |
|
"text": "641 S Street NW, washington, district of columbia" |
|
}, |
|
"expected": { |
|
"properties": [ |
|
{ |
|
"layer": "address", |
|
"housenumber": "641", |
|
"street": "S Street NW", |
|
"locality": "Washington", |
|
"region": "District of Columbia" |
|
} |
|
] |
|
} |
|
} |
|
] |
|
}
|
|
|