nushell/crates/nu-command/tests/commands/random/chars.rs

22 lines
448 B
Rust
Raw Normal View History

use nu_test_support::nu;
2020-12-08 17:43:46 +00:00
#[test]
fn generates_chars_of_specified_length() {
let actual = nu!(r#"
random chars --length 15 | str stats | get chars
"#);
2020-12-08 17:43:46 +00:00
let result = actual.out;
assert_eq!(result, "15");
}
#[test]
fn generates_chars_of_specified_filesize() {
let actual = nu!(r#"
random chars --length 1kb | str stats | get bytes
"#);
let result = actual.out;
assert_eq!(result, "1000");
}