Remove group command (#14056)

# Description

Removes the `group` command that was deprecated back in 0.96.0 with
#13377.

# User-Facing Changes

Breaking change, removed `group` command.
This commit is contained in:
Ian Manske
2024-10-11 04:43:12 -07:00
committed by GitHub
parent 2df91e7f92
commit a95c2198a6
4 changed files with 1 additions and 136 deletions

View File

@ -9,7 +9,7 @@ fn each_works_separately() {
#[test]
fn each_group_works() {
let actual = nu!("echo [1 2 3 4 5 6] | group 3 | to json --raw");
let actual = nu!("echo [1 2 3 4 5 6] | chunks 3 | to json --raw");
assert_eq!(actual.out, "[[1,2,3],[4,5,6]]");
}