Function subplotlib::steplibrary::files::has_remembered_metadata::call[][src]

pub fn call(___context___: &ScenarioContext, filename: &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")]
#[context("Files")]
fn defer_to_has_remembered_metadata(context: &ScenarioContext) {
    //...
    has_remembered_metadata::call(context, filename)?;
    // ...
}