Update doc comments

This commit is contained in:
Glenn Griffin 2019-12-10 16:05:24 -08:00
parent 5201191261
commit ae5779c1b9

View File

@ -1,9 +1,12 @@
//! # httptest //! # httptest
//! //!
//! Provide convenient mechanism for testing http clients against a locally //! Provide convenient mechanism for testing http clients against a locally
//! running http server. This library consists of a number of components that //! running http server. The typical usage is as follows:
//! allow starting an http server and configuring it to expect to receive certain //!
//! requests and respond appropriately. //! * Start a server
//! * Configure the server by adding expectations
//! * Test your http client by making requests to the server
//! * On Drop the server verifies all expectations were met.
//! //!
//! ## Example Test //! ## Example Test
//! //!