omena-testkit 0.1.14

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

mod boundary;
pub mod fixture;
pub mod scenario;
pub mod snapshot;

pub use boundary::*;
pub use fixture::*;
pub use scenario::*;
pub use snapshot::*;