rapina 0.11.0

A fast, type-safe web framework for Rust inspired by FastAPI
Documentation
1
2
3
4
5
6
7
8
9
10
//! Testing utilities for Rapina applications.
//!
//! This module provides a test client for integration testing without
//! starting a full HTTP server.

mod client;
mod snapshot;

pub use client::{TestClient, TestRequestBuilder, TestResponse};
pub use snapshot::assert_snapshot;