mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
test(web/error): validate TimeoutError::Service status_code
This commit is contained in:
parent
33490cd360
commit
02b5857dc5
1 changed files with 6 additions and 0 deletions
|
@ -712,6 +712,12 @@ mod tests {
|
|||
);
|
||||
assert_eq!(resp.status(), StatusCode::GATEWAY_TIMEOUT);
|
||||
|
||||
let resp = WebResponseError::<DefaultError>::error_response(
|
||||
&TimeoutError::<UrlencodedError>::Service(UrlencodedError::Chunked),
|
||||
&req,
|
||||
);
|
||||
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
||||
|
||||
let resp = WebResponseError::<DefaultError>::error_response(
|
||||
&SendRequestError::Connect(ConnectError::Timeout),
|
||||
&req,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue