mirror of
https://github.com/nushell/nushell
synced 2024-11-16 09:47:57 +00:00
14 lines
278 B
Rust
14 lines
278 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn generates_chars_of_specified_length() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
random chars -l 15 | size | get chars
|
|
"#
|
|
));
|
|
|
|
let result = actual.out;
|
|
assert_eq!(result, "15");
|
|
}
|