mirror of
https://github.com/nushell/nushell
synced 2024-11-11 15:37:07 +00:00
Different test data for a format Nu does not recognize.
This commit is contained in:
parent
c7531d6b3d
commit
67a0606b6d
2 changed files with 4 additions and 2 deletions
|
@ -71,7 +71,9 @@ fn open_unknown_format_as_raw_single_value() {
|
||||||
cwd("tests/fixtures/formats"),
|
cwd("tests/fixtures/formats"),
|
||||||
"open skinfolds.unsupported | echo $it");
|
"open skinfolds.unsupported | echo $it");
|
||||||
|
|
||||||
assert_eq!(output, "ABS:3.0|PEC:3.0")
|
// if it's ABS:3.0|PEC:3.0 with the "|" character
|
||||||
|
// on Windows it's interpreted it as a command
|
||||||
|
assert_eq!(output, "ABS:3.0-PEC:3.0")
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
2
tests/fixtures/formats/skinfolds.unsupported
vendored
2
tests/fixtures/formats/skinfolds.unsupported
vendored
|
@ -1 +1 @@
|
||||||
"ABS:3.0|PEC:3.0"
|
"ABS:3.0-PEC:3.0"
|
||||||
|
|
Loading…
Reference in a new issue