zero_testkit/lib.rs
1//! Test doubles for the ZERO engine.
2//!
3//! The CLI target never ships with this crate. It powers integration
4//! tests, snapshot tests, and the performance harness. The mock
5//! engine mirrors the real FastAPI shapes — if a schema drifts in
6//! production, tests fail loud.
7
8#![allow(clippy::module_name_repetitions)]
9
10pub mod fixtures;
11pub mod mock_engine;