mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 14:40:06 +02:00
add streaming to get
and reject
(#14622)
Closes #14487. # Description `get` and `reject` now stream properly: Before:  Now:  # User-Facing Changes # Tests + Formatting # After Submitting --------- Co-authored-by: Wind <WindSoilder@outlook.com> Co-authored-by: 132ikl <132@ikl.sh>
This commit is contained in:
@ -56,8 +56,11 @@ fn errors_if_non_record_input() {
|
||||
"
|
||||
));
|
||||
|
||||
assert!(only_supports
|
||||
.err
|
||||
.contains("only Record input data is supported"));
|
||||
assert!(
|
||||
only_supports
|
||||
.err
|
||||
.contains("only Record input data is supported")
|
||||
|| only_supports.err.contains("expected: record")
|
||||
);
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user