mirror of https://github.com/pelias/api.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.
17 lines
434 B
17 lines
434 B
|
|
#> invalid path |
|
path: '/notexist' |
|
|
|
#? not found |
|
response.statusCode.should.be.equal 404 |
|
|
|
#? content-type header correctly set |
|
response.should.have.header 'Content-Type','application/json; charset=utf-8' |
|
|
|
#? cache-control header correctly set |
|
response.should.have.header 'Cache-Control','public' |
|
|
|
#? should respond in json with server info |
|
should.exist json |
|
should.exist json.error |
|
json.error.should.be.equal 'not found: invalid path' |