Add test for UTF-16LE encoding

This commit is contained in:
sharkdp 2019-02-10 09:19:38 +01:00 committed by David Peter
parent 906774e6d3
commit fa3244f7c1
2 changed files with 12 additions and 0 deletions

BIN
tests/examples/test_UTF-16LE.txt vendored Normal file

Binary file not shown.

View File

@ -436,3 +436,15 @@ fn config_read_arguments_from_file() {
.success()
.stdout("dummy-pager-from-config\n");
}
#[test]
fn utf16() {
// The output will be converted to UTF-8 with a leading UTF-8 BOM
bat()
.arg("--plain")
.arg("--decorations=always")
.arg("test_UTF-16LE.txt")
.assert()
.success()
.stdout(std::str::from_utf8(b"\xEF\xBB\xBFhello world\n").unwrap());
}