mirror of
https://github.com/nushell/nushell.git
synced 2024-12-12 02:02:32 +01:00
12 lines
229 B
Rust
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");
|
|
}
|