rapina 0.8.0

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

mod client;

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