1 2 3 4 5 6 7
#[narrative::story("Story with missing step parameter")] trait MissingParameterStory { #[step("When I perform an action")] fn perform_action(&self, action: &str); // Missing 'action' parameter } fn main() {}