forked from extern/nushell
11 lines
195 B
Rust
11 lines
195 B
Rust
mod commands;
|
|
|
|
use nu_test_support::nu;
|
|
|
|
#[test]
|
|
fn doesnt_break_on_utf8() {
|
|
let actual = nu!(cwd: ".", "echo ö");
|
|
|
|
assert_eq!(actual.out, "ö", "'{}' should contain ö", actual.out);
|
|
}
|