mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 17:03:45 +01:00
17 lines
286 B
Rust
17 lines
286 B
Rust
use nu_test_support::{nu, pipeline};
|
|
use uuid_crate::Uuid;
|
|
|
|
#[test]
|
|
fn generates_valid_uuid4() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
random uuid
|
|
"#
|
|
));
|
|
|
|
let result = Uuid::parse_str(actual.out.as_str());
|
|
|
|
assert!(result.is_ok());
|
|
}
|