1
0
mirror of https://github.com/nushell/nushell.git synced 2025-07-19 15:35:39 +02:00
Files
.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
nushell/tests/shell/pipeline/mod.rs
Andrés N. Robalino 96e5fc05a3 Pick->Select rename. Integration tests changes. ()
Pick->Select rename. Integration tests changes.
2020-05-07 06:03:43 -05:00

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);
}