Function subplotlib::steplibrary::runcmd::stdout_isnt::call[][src]

pub fn call(___context___: &ScenarioContext, text: &str) -> StepResult
Expand description

Call this step function from another.

If you want to call this step function from another, you will need to do something like this:

#[step]
#[context("Runcmd")]
fn defer_to_stdout_isnt(context: &ScenarioContext) {
    //...
    stdout_isnt::call(context, text)?;
    // ...
}