Skip to main content

omena_testkit/
lib.rs

1//! Shared Rust fixture and scenario substrate for omena-css tests.
2//!
3//! M4 uses this crate to move reusable fixture grammar out of product-specific
4//! harnesses. The M4 substrate also locks scenario macros and snapshot
5//! governance on top of the same `cme-fixture-v0` parser.
6
7mod boundary;
8pub mod fixture;
9pub mod scenario;
10pub mod snapshot;
11
12pub use boundary::*;
13pub use fixture::*;
14pub use scenario::*;
15pub use snapshot::*;