narrative 0.12.2

An immensely simple library for story-driven development
Documentation
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() {}