mirror of
https://github.com/uutils/coreutils
synced 2024-11-05 14:21:32 +00:00
8 lines
186 B
Rust
8 lines
186 B
Rust
use crate::common::util::TestScenario;
|
|
use regex::Regex;
|
|
|
|
#[test]
|
|
fn test_normal() {
|
|
let re = Regex::new(r"^[0-9a-f]{8}").unwrap();
|
|
new_ucmd!().succeeds().stdout_matches(&re);
|
|
}
|