mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 00:53:25 +00:00
9 lines
155 B
Rust
9 lines
155 B
Rust
|
use common::util::*;
|
||
|
|
||
|
#[test]
|
||
|
fn test_more_no_arg() {
|
||
|
let (_, mut ucmd) = at_and_ucmd!();
|
||
|
let result = ucmd.run();
|
||
|
assert!(!result.success);
|
||
|
}
|