1
0
mirror of https://github.com/nushell/nushell.git synced 2025-04-14 00:08:20 +02:00
nushell/crates/nu-command/tests/commands/conversions/into
Devyn Cairns 948b90299d
Preserve attributes on external ByteStreams ()
# Description

Bug fix: `PipelineData::check_external_failed()` was not preserving the
original `type_` and `known_size` attributes of the stream passed in for
streams that come from children, so `external-command | into binary` did
not work properly and always ended up still being unknown type.

# User-Facing Changes
The following test case now works as expected:

```nushell
> head -c 2 /dev/urandom | into binary
# Expected: pretty hex dump of binary
# Previous behavior: just raw binary in the terminal
```

# Tests + Formatting
Added a test to cover this to `into binary`
2024-07-05 21:10:41 +00:00
..
binary.rs Preserve attributes on external ByteStreams () 2024-07-05 21:10:41 +00:00
int.rs add --signed flag for binary into int conversions () 2024-02-27 15:05:26 +00:00
mod.rs Preserve attributes on external ByteStreams () 2024-07-05 21:10:41 +00:00