pub fn call(___context___: &ScenarioContext, megabytes: u64) -> 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]
fn defer_to_datadir_has_enough_space_megabytes(context: &ScenarioContext) {
    //...
    datadir_has_enough_space_megabytes::call(context, megabytes)?;
    // ...
}