15 lines
524 B
Rust
15 lines
524 B
Rust
//! E2E integration tests for concrete operations.
|
|
//!
|
|
//! Each submodule under `e2e::` covers one op end-to-end: dispatch →
|
|
//! pipeline → witness verification → external observer round-trip.
|
|
//! The `e2e::<op_id>::...` test path matches the gate-filter convention
|
|
//! `cargo test -p ontoref-ops e2e::<op_id>` so each op gate isolates
|
|
//! its own surface.
|
|
|
|
mod e2e {
|
|
pub mod cross_domain;
|
|
pub mod extra_ops;
|
|
pub mod move_fsm_state;
|
|
#[cfg(feature = "substrate")]
|
|
pub mod witness_seam_full_cycle;
|
|
}
|