pub fn call(
    ___context___: &ScenarioContext,
    filename: &str,
    data: &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("Datadir")]
fn defer_to_file_doesnt_contain(context: &ScenarioContext) {
    //...
    file_doesnt_contain::call(context, filename, data)?;
    // ...
}