https://github.com/otechdo/installation-testing
https://github.com/otechdo/installation-testing
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/otechdo/installation-testing
- Owner: otechdo
- Created: 2023-11-24T09:20:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-24T09:21:11.000Z (over 2 years ago)
- Last Synced: 2025-06-25T22:07:55.720Z (11 months ago)
- Language: Rust
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation testing
A program to test installation
## Installation
```bash
cargo add installation-testing
```
### Example
```rust
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());
```