garage/src/garage/tests/smoke.rs

9 lines
254 B
Rust
Raw Normal View History

2020-11-29 15:27:51 +00:00
use assert_cmd::prelude::*; // Add methods on commands
use predicates::prelude::*; // Used for writing assertions
use std::process::Command; // Run programs
#[test]
fn smoke() -> Result<(), CargoError> {
let mut cmd = Command::cargo_bin("garage")?;
}