cargo-regression 0.4.5

Collect test task from input files, execute them and compare results with golden.
Documentation
1
2
3
4
5
6
7
8
use cargo_regression::{Args, TestExitCode};

#[tokio::main]
async fn main() -> TestExitCode {
  // in sub-command mode, skip the first arg
  let args = Args::parse_from(std::env::args_os().skip(1));
  args.test().await
}