batch_run 1.2.0

Batch runner for arbitrary Rust files within current project
Documentation
1
2
3
4
5
6
fn main() {
    let b = batch_run::Batch::new();
    b.compile_fail("test_batches/ui-runner/cases/compile-*.rs");
    b.run_match("test_batches/ui-runner/cases/run-*.rs");
    b.run().unwrap().assert_all_ok();
}