ws_mock/lib.rs
1//! A simple websocket mock framework heavily inspired by [`Wiremock`] in Rust.
2//!
3//! Ws-Mock is meant to provide a simple framework for expecting, verifying, and responding to
4//! messages for tests.
5//!
6//! [`Wiremock`]: https://docs.rs/wiremock/latest/wiremock/
7
8/// A common trait and useful implementations for matching against received messages.
9pub mod matchers;
10
11pub mod utils;
12/// The mock server implementation that handles `WsMock`s, expecting, verifying, and responding to
13/// messages.
14pub mod ws_mock_server;