mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
11 lines
167 B
Rust
11 lines
167 B
Rust
use crate::common::util::*;
|
|
|
|
#[test]
|
|
fn test_sync_default() {
|
|
new_ucmd!().run();
|
|
}
|
|
|
|
#[test]
|
|
fn test_sync_incorrect_arg() {
|
|
new_ucmd!().arg("--foo").fails();
|
|
}
|