mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
14 lines
223 B
Rust
14 lines
223 B
Rust
use crate::common::util::*;
|
|
|
|
#[test]
|
|
fn test_arch() {
|
|
new_ucmd!().succeeds();
|
|
}
|
|
|
|
#[test]
|
|
fn test_arch_help() {
|
|
new_ucmd!()
|
|
.arg("--help")
|
|
.succeeds()
|
|
.stdout_contains("architecture name");
|
|
}
|