mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 02:13:47 +01:00
84cdc0d521
follow-up to - https://github.com/nushell/nushell/pull/10798 > **Important** > wait for between 0.87 and 0.88 to land this # Description once again, after deprecation comes removal 😌 # User-Facing Changes `size` is now removed and `str size` should be used # Tests + Formatting # After Submitting
12 lines
234 B
Rust
12 lines
234 B
Rust
use nu_test_support::nu;
|
|
|
|
#[test]
|
|
fn generates_chars_of_specified_length() {
|
|
let actual = nu!(r#"
|
|
random chars --length 15 | str stats | get chars
|
|
"#);
|
|
|
|
let result = actual.out;
|
|
assert_eq!(result, "15");
|
|
}
|