Crates.io | installation-testing |
lib.rs | installation-testing |
version | 0.0.4 |
source | src |
created_at | 2023-06-17 15:36:53.043673 |
updated_at | 2023-08-09 14:52:35.958577 |
description | A testing installation library |
homepage | |
repository | https://github.com/taishingi/zuu/tree/master/installation-testing |
max_upload_size | |
id | 892986 |
size | 6,005 |
A program to test installation
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());