mirror of
https://github.com/uutils/procps.git
synced 2026-06-10 16:14:00 -07:00
12 lines
272 B
Rust
12 lines
272 B
Rust
// This file is part of the uutils procps package.
|
|
//
|
|
// For the full copyright and license information, please view the LICENSE
|
|
// file that was distributed with this source code.
|
|
|
|
use uutests::new_ucmd;
|
|
|
|
#[test]
|
|
fn test_no_args() {
|
|
new_ucmd!().fails().code_is(1);
|
|
}
|