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

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