mirror of
https://github.com/nushell/nushell
synced 2025-01-04 09:18:57 +00:00
17 lines
282 B
Rust
17 lines
282 B
Rust
|
use nu_test_support::{nu, pipeline};
|
||
|
use uuid_crate::Uuid;
|
||
|
|
||
|
#[test]
|
||
|
fn makes_valid_uuid4() {
|
||
|
let actual = nu!(
|
||
|
cwd: ".", pipeline(
|
||
|
r#"
|
||
|
random uuid
|
||
|
"#
|
||
|
));
|
||
|
|
||
|
let result = Uuid::parse_str(actual.out.as_str());
|
||
|
|
||
|
assert!(result.is_ok());
|
||
|
}
|