pub fn call(
    ___context___: &ScenarioContext,
    filename_on_disk: &str,
    embedded_file: SubplotDataFile
) -> 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_create_from_embedded_with_other_name(context: &ScenarioContext) {
    //...
    create_from_embedded_with_other_name::call(context, filename_on_disk, embedded_file)?;
    // ...
}