1 2 3 4 5 6 7 8 9 10 11 12
//! Step definitions for `tests/features/redact.feature`. pub mod redact_steps; use cucumber::World; /// Per-scenario state. #[derive(Debug, Default, World)] pub struct RedactWorld { pub input: String, pub output: String, }