This commit is contained in:
Matt Green 2016-10-26 16:29:34 -04:00
parent 0631a98429
commit fdc31d4b02
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View File

@ -1,6 +1,6 @@
[root]
name = "watchexec"
version = "1.2.0"
version = "1.2.1"
dependencies = [
"clap 2.14.0 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -213,7 +213,7 @@ mod tests {
fn test_start() {
let process = Process::new("echo hi", vec![]);
assert!(process.is_some());
assert!(process.is_ok());
}
#[test]