4 个版本
0.0.4 | 2023年8月9日 |
---|---|
0.0.3 | 2023年6月21日 |
0.0.2 | 2023年6月18日 |
0.0.1 | 2023年6月17日 |
#637 in 测试
每月 28 次下载
7KB
94 行
安装测试
一个测试安装的程序
安装
cargo add installation-testing
示例
use installation_testing::git::vcs::Git;
use std::process::Command;
let mut cargo = Command::new("cargo");
let test = cargo.arg("build");
let x = Git::new("https://github.com/taishingi/zuu","/tmp/zuu"); // Clone directly the repository
assert!(x.run(test).clean());