mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
306dc89ede
* Add bool subcommand to random * Fix function name copy paste error * Fix issue 2062: allow deserialization of a decimal * Add bias flag to `random bool`
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());
|
|
}
|