Files
uutil-linux/tests/by-util/test_ctrlaltdel.rs
2025-09-17 09:09:44 +02:00

14 lines
364 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 uutests::new_ucmd;
#[test]
#[cfg(target_os = "linux")]
fn test_invalid_arg() {
new_ucmd!().arg("--definitely-invalid").fails().code_is(1);
}