nushell/crates/nu-command/tests/commands/random/uuid.rs
sholderbach 00c845185d Weird feature "uuid_crate"
Seem to be some package renaming at the time the test was added, have to
blame regarding the feature
2024-07-31 18:48:14 +02:00

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());
}