use std::process::Command;
#[test]
fn cli() {
Command::new("git")
.arg("clean")
.arg("-fdx")
.arg("--")
.arg("tests")
.spawn()
.unwrap()
.wait()
.unwrap();
trycmd::TestCases::new()
.case("tests/positive/*.toml")
.case("tests/negative/*.toml")
.default_bin_name("cargo-safe");
}