1
0
mirror of https://github.com/nushell/nushell.git synced 2025-06-20 01:48:09 +02:00
2023-10-19 22:04:33 +02:00

12 lines
229 B
Rust

use nu_test_support::nu;
#[test]
fn generates_chars_of_specified_length() {
let actual = nu!(r#"
random chars --length 15 | size | get chars
"#);
let result = actual.out;
assert_eq!(result, "15");
}