Douglas 26897b287c
Adds platform agnostic EoL separator to char command (#15059)
Adds `char eol`, `char line_sep`, and `char lsep` (synonyms) to represent
the platform specific line ending character(s).
2025-02-08 16:23:51 -05:00

13 lines
215 B
Rust

use nu_test_support::{nu, pipeline};
#[test]
fn test_char_list_outputs_table() {
let actual = nu!(pipeline(
r#"
char --list | length
"#
));
assert_eq!(actual.out, "113");
}