Files
uutil-linux/tests/by-util/test_ctrlaltdel.rs
2024-06-28 16:42:08 +02:00

14 lines
380 B
Rust

// This file is part of the uutils util-linux package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
#[cfg(target_os = "linux")]
use crate::common::util::TestScenario;
#[test]
#[cfg(target_os = "linux")]
fn test_invalid_arg() {
new_ucmd!().arg("--definitely-invalid").fails().code_is(1);
}