Seem to be some package renaming at the time the test was added, have to blame regarding the feature
12 lines
204 B
Rust
12 lines
204 B
Rust
use nu_test_support::nu;
|
|
use uuid::Uuid;
|
|
|
|
#[test]
|
|
fn generates_valid_uuid4() {
|
|
let actual = nu!("random uuid");
|
|
|
|
let result = Uuid::parse_str(actual.out.as_str());
|
|
|
|
assert!(result.is_ok());
|
|
}
|