mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-15 17:51:07 +00:00
9 lines
201 B
Rust
9 lines
201 B
Rust
use crate::common::util::*;
|
|
extern crate regex;
|
|
use self::regex::Regex;
|
|
|
|
#[test]
|
|
fn test_normal() {
|
|
let re = Regex::new(r"^[0-9a-f]{8}").unwrap();
|
|
new_ucmd!().succeeds().stdout_matches(&re);
|
|
}
|