mirror of
https://github.com/nushell/nushell.git
synced 2024-11-27 02:44:01 +01:00
10 lines
212 B
Rust
10 lines
212 B
Rust
|
use nu_test_support::nu;
|
||
|
|
||
|
#[test]
|
||
|
fn test_kill_invalid_pid() {
|
||
|
let pid = i32::MAX;
|
||
|
let actual = nu!(format!("kill {}", pid));
|
||
|
|
||
|
assert!(actual.err.contains("process didn't terminate successfully"));
|
||
|
}
|