installation-testing

Crates.ioinstallation-testing
lib.rsinstallation-testing
version0.0.4
sourcesrc
created_at2023-06-17 15:36:53.043673
updated_at2023-08-09 14:52:35.958577
descriptionA testing installation library
homepage
repositoryhttps://github.com/taishingi/zuu/tree/master/installation-testing
max_upload_size
id892986
size6,005
Willy Micieli (taishingi)

documentation

https://docs.rs/installation-testing/

README

Installation testing

A program to test installation

Installation

cargo add installation-testing

Example

    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());  
Commit count: 9

cargo fmt