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 `omena-fixture-v0` parser.
6
7mod boundary;
8pub mod fixture;
9pub mod fixture_eval;
10pub mod scenario;
11pub mod snapshot;
12
13pub use boundary::*;
14pub use fixture::*;
15pub use fixture_eval::*;
16pub use scenario::*;
17pub use snapshot::*;