coreutils/tests/by-util/test_sync.rs
2020-11-11 22:57:55 +01:00

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();
}