Skip to main content

tailfeather_testkit/
lib.rs

1//! Offline, deterministic compatibility checks for [`tailfeather`].
2//!
3//! ```
4//! let report = tailfeather_testkit::replay::check_all();
5//! assert!(report.passed());
6//! ```
7
8pub mod replay;
9pub mod report;
10pub mod vectors;
11
12pub use report::{Check, Report, Status};