oxidite_testing/
lib.rs

1//! Testing utilities for Oxidite web applications
2//!
3//! This crate provides test helpers, mocks, and utilities for testing
4//! Oxidite web applications.
5//!
6//! # Examples
7//!
8//! ```no_run
9//! use oxidite_testing::*;
10//!
11//! #[tokio::test]
12//! async fn test_endpoint() {
13//!     let request = TestRequest::get("/api/users").build();
14//!     // Test your handlers
15//! }
16//! ```
17
18pub mod request;
19pub mod response;
20
21pub use request::TestRequest;
22pub use response::TestResponse;
23
24/// Re-export tokio::test for convenience
25pub use tokio::test;