mirror of
https://github.com/nushell/nushell.git
synced 2025-07-19 15:35:39 +02:00
.azure
.cargo
.circleci
.github
.theia
crates
debian
docker
docs
images
pkg_mgrs
samples
src
tests
fixtures
plugins
shell
pipeline
commands
mod.rs
mod.rs
main.rs
wix
.dockerignore
.editorconfig
.gitignore
.gitpod.Dockerfile
.gitpod.yml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
LICENSE
Makefile.toml
README.build.txt
README.md
rustfmt.toml
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);
|
|
}
|