Function subplotlib::steplibrary::runcmd::stderr_is::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_stderr_is(context: &ScenarioContext) {
    //...
    stderr_is::call(context, text)?;
    // ...
}