blob: 40010a0e9cd7c42c1cb56f638c2036655d015461 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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")?;
}
|