Function datadriven::walk_async_exclusive

source ·
pub async fn walk_async_exclusive<F, T, M>(
    dir: &str,
    f: F,
    exclusion_matcher: M
)
where F: FnMut(TestFile) -> T, T: Future<Output = TestFile>, M: Fn(&TestFile) -> bool,
Expand description

The same as walk_async but accepts an additional matcher to exclude matching files from being tested.