pub fn call(___context___: &ScenarioContext) -> 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_helper_srcdir_path(context: &ScenarioContext) {
    //...
    helper_srcdir_path::call(context, )?;
    // ...
}