mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
Guide: additional tweak to testing chapter.
This commit is contained in:
parent
7cff5d9ade
commit
1a45dbd768
@ -5,7 +5,7 @@ integration tests.
|
||||
|
||||
## Unit tests
|
||||
|
||||
For unit testing, actix provides a request builder type and simple handler runner.
|
||||
For unit testing, actix provides a request builder type and a simple handler runner.
|
||||
[*TestRequest*](../actix_web/test/struct.TestRequest.html) implements a builder-like pattern.
|
||||
You can generate a `HttpRequest` instance with `finish()`, or you can
|
||||
run your handler with `run()` or `run_async()`.
|
||||
@ -42,7 +42,7 @@ There are several methods for testing your application. Actix provides
|
||||
[*TestServer*](../actix_web/test/struct.TestServer.html), which can be used
|
||||
to run the application with specific handlers in a real http server.
|
||||
|
||||
`TestServer::get()`, `TestServer::post()`, or `TestServer::client()`
|
||||
`TestServer::get()`, `TestServer::post()`, and `TestServer::client()`
|
||||
methods can be used to send requests to the test server.
|
||||
|
||||
A simple form `TestServer` can be configured to use a handler.
|
||||
@ -133,7 +133,7 @@ the websocket server and returns ws reader and writer objects. *TestServer* also
|
||||
provides an `execute()` method, which runs future objects to completion and returns
|
||||
result of the future computation.
|
||||
|
||||
Here is a simple example that shows how to test server websocket handler.
|
||||
The following example shows how to test a server websocket handler:
|
||||
|
||||
```rust
|
||||
# extern crate actix;
|
||||
|
Loading…
Reference in New Issue
Block a user